added manual docker file
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 53s
Build and Deploy / Deploy Discord Bot (push) Failing after 35s

This commit is contained in:
2023-05-12 14:41:28 +02:00
parent fd276bdb94
commit 80f4972d29
3 changed files with 23 additions and 7 deletions

9
web/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:18-alpine
WORKDIR /usr/src/app
COPY .output .
EXPOSE 3000
CMD [ "node", "server/index.mjs" ]