wrbapp/Dockerfile
xeovalyte 883d38509b
All checks were successful
Build and Deploy / Deploy (push) Successful in 4m16s
Update 'Dockerfile'
2023-05-09 20:49:59 +02:00

10 lines
112 B
Docker

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