portfolio/Dockerfile
Xeovalyte 7b9c9e8971
All checks were successful
Build and Deploy / Deploy (push) Successful in 2m7s
Update Dockerfile
2023-11-28 16:32:17 +01:00

10 lines
109 B
Docker

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