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.
12 lines
202 B
Docker
12 lines
202 B
Docker
5 years ago
|
FROM node:current-alpine
|
||
|
|
||
|
COPY . /home/node/green
|
||
|
WORKDIR /home/node/green
|
||
|
RUN npm install -g gulp
|
||
|
RUN npm install --save-dev
|
||
|
RUN npm rebuild node-sass
|
||
|
RUN gulp
|
||
|
COPY . .
|
||
|
EXPOSE 8080
|
||
|
CMD ["npm" , "run"]
|