Korral-Interactions/Dockerfile
2021-07-06 01:36:33 -07:00

8 lines
141 B
Docker

FROM node:14
COPY . /korral-interactions
WORKDIR /korral-interactions
RUN mkdir storage
RUN npm i
RUN npm run build
CMD npm start
EXPOSE 3000