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 22s
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:09:02 +00:00
parent df551690ce
commit 124fa68887
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
FROM node:23-alpine AS build FROM node:23-alpine AS build
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN ls -al
RUN npm install RUN npm install
COPY . . COPY . .
# COPY .env .env.development ./ # COPY .env .env.development ./

View File

@ -2,6 +2,7 @@
FROM node:23-alpine AS build FROM node:23-alpine AS build
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN ls -al
RUN npm install RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build