Fixing build
Some checks failed
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Failing after 18s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Failing after 21s

This commit is contained in:
Phill Pover 2025-03-27 11:15:02 +00:00
parent d21a208e77
commit d94f5b796e

View File

@ -1,7 +1,8 @@
# Build Stage
FROM node:23-alpine AS build
WORKDIR /app
COPY ./package*.json /app/
COPY ./package.json /app/
COPY ./package-lock.json /app/
RUN pwd && ls -al
RUN npm install
COPY . .