Compare commits

...

3 Commits

Author SHA1 Message Date
Noooste 3d88d1628a fix: remove unnecessary .env.production copy from Dockerfile 2025-12-08 23:57:35 +01:00
Noooste 0553479055 fix: update API base URL to use relative path 2025-12-08 23:57:17 +01:00
Noooste 2d52bdd714 fix: update Docker registry to use docker.io for login action 2025-12-08 23:49:28 +01:00
3 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ jobs:
- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
registry: docker.io
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_PASSWORD }}
-2
View File
@@ -8,8 +8,6 @@ RUN npm ci
COPY frontend/ .
COPY frontend/.env.production .env
RUN npm run build
FROM golang:1.25.4-alpine3.22 AS backend-builder
+1 -1
View File
@@ -17,7 +17,7 @@ import type {
} from '@/types';
const api = axios.create({
baseURL: import.meta.env.VITE_API_URL || 'http://localhost:8080/api',
baseURL: '/api',
headers: {
'Content-Type': 'application/json',
},