You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
217 B
Docker
14 lines
217 B
Docker
4 years ago
|
FROM node
|
||
|
WORKDIR /
|
||
|
|
||
|
COPY ./src /src
|
||
|
COPY ./package*.json ./
|
||
|
COPY ./gulpfile.js ./tsconfig.json ./tslint.json ./
|
||
|
|
||
|
RUN npm install
|
||
|
RUN npm install -g gulp
|
||
|
RUN npm install gulp
|
||
|
RUN gulp
|
||
|
|
||
|
EXPOSE 4000
|
||
|
CMD ["npm", "start"]
|