🐳 Docker

This commit is contained in:
Philipp Dormann
2021-07-12 21:50:39 +02:00
parent 789094a2ee
commit 8cd90d1e96
3 changed files with 23 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:16.4.2-alpine3.14
#
WORKDIR /app
COPY . .
RUN yarn
RUN yarn build
#
EXPOSE 50013
VOLUME ["/app/data"]
CMD ["npm", "run", "start-server"]