All checks were successful
ci/woodpecker/push/build Pipeline was successful
10 lines
107 B
Docker
10 lines
107 B
Docker
FROM node:20
|
|
WORKDIR ./app
|
|
COPY ./ ./
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
CMD ["npm", "start"] |