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