Cleanup
All checks were successful
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Successful in 34s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Successful in 43s

This commit is contained in:
Phill Pover 2025-03-27 11:23:38 +00:00
parent 37e769b135
commit 2163899234
2 changed files with 2 additions and 4 deletions

View File

@ -1,8 +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 ./package*.json ./
RUN pwd && ls -al
RUN npm install RUN npm install
COPY . . COPY . .
# COPY .env .env.development ./ # COPY .env .env.development ./

View File

@ -1,8 +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 ./package*.json ./
RUN ls -al
RUN npm install RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build