Korral-Interactions/Dockerfile

8 lines
141 B
Docker
Raw Permalink Normal View History

2021-07-06 01:36:33 -07:00
FROM node:14
COPY . /korral-interactions
WORKDIR /korral-interactions
RUN mkdir storage
RUN npm i
RUN npm run build
CMD npm start
EXPOSE 3000