All checks were successful
Anatid Blog CI Workflow / test (./backend) (push) Successful in 28s
Anatid Blog CI Workflow / test (./frontend) (push) Successful in 30s
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Successful in 50s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Successful in 59s
Anatid Blog CI Workflow / deploy (push) Successful in 26s
15 lines
328 B
Docker
15 lines
328 B
Docker
# Build Stage
|
|
FROM node:23-alpine AS build
|
|
WORKDIR /app
|
|
COPY ./package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
CMD [ "node", "build/main.js" ]
|
|
|
|
# Production Stage
|
|
#FROM nginx:stable-alpine AS production
|
|
#COPY --from=build /app/build /usr/share/nginx/html
|
|
#EXPOSE 80
|
|
#CMD ["nginx", "-g", "daemon off;"]
|