Polarcraft/discord-bot/Dockerfile
Xeovalyte 80f4972d29
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 53s
Build and Deploy / Deploy Discord Bot (push) Failing after 35s
added manual docker file
2023-05-12 14:41:28 +02:00

12 lines
111 B
Docker

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