Polarcraft/web/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

10 lines
108 B
Docker

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