wrbapp/Dockerfile
Xeovalyte 562d432080
Some checks failed
Build and Deploy / Deploy (push) Failing after 16s
fixed ci
2023-05-01 20:02:39 +02:00

10 lines
119 B
Docker

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