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

11
discord-bot/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:18-alpine
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE 3000
CMD [ "node", "index.js" ]