wrbapp/Dockerfile
Xeovalyte 48d8d3f035
All checks were successful
Build and Deploy / Deploy (push) Successful in 1m48s
changed directory
2023-05-01 20:06:48 +02:00

10 lines
120 B
Docker

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