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.
greenvironment-server/Dockerfile

12 lines
213 B
Docker

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"]