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 52s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Failing after 1m2s

This commit is contained in:
Phill Pover 2025-03-27 11:17:37 +00:00
parent aa1ce42efa
commit 8403a87a29
2 changed files with 2 additions and 2 deletions

View File

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

View File

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