hunshin/Dockerfile
xeovalyte 821b521590
All checks were successful
Build and Deploy / Deploy (push) Successful in 1m49s
Added dockerfile
2025-02-10 18:16:16 +01:00

11 lines
117 B
Docker

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