mirror of
https://github.com/Team-Neptune/Korral-Interactions.git
synced 2024-11-23 12:49:40 +00:00
8 lines
141 B
Docker
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 |