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

13 lines
242 B
Docker

FROM node:13.7.0
COPY . /home/node/green
WORKDIR /home/node/green
RUN apt update
RUN apt install redis-server -y
RUN npm install -g gulp
RUN yarn install
RUN gulp
COPY . .
EXPOSE 8080
CMD ["redis-server", "&", "node" , "./dist"]