wrbapp/Dockerfile
Xeovalyte a73644c23d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
edited CI
2023-01-21 21:43:43 +01:00

13 lines
147 B
Docker

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