1 Commits
0.3.0 ... main

Author SHA1 Message Date
14b43cb3c5 hotfix for build args and bumped up version
All checks were successful
continuous-integration/drone/tag Build is passing
2025-12-13 19:31:39 +05:30
3 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,8 @@ COPY . .
# Build the app
ARG VITE_API_BASE_URL
RUN VITE_API_BASE_URL=$VITE_API_BASE_URL npm run build
ARG VITE_AUTH_BASE_URL
RUN VITE_API_BASE_URL=$VITE_API_BASE_URL VITE_AUTH_BASE_URL=$VITE_AUTH_BASE_URL npm run build
# Stage 2: Static file server (BusyBox)
FROM busybox:latest

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "aetoskia-blog-app",
"version": "0.3.0",
"version": "0.3.1",
"lockfileVersion": 3,
"requires": true,
"packages": {

View File

@@ -1,6 +1,6 @@
{
"name": "aetoskia-blog-app",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "vite",