Xeovalyte
a73644c23d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
13 lines
147 B
Docker
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" ]
|