[1.0.0] #19

Merged
ashir merged 80 commits from dev into main 2026-04-30 18:37:18 +00:00
3 changed files with 7 additions and 5 deletions
Showing only changes of commit 69d6d5a8f3 - Show all commits
+1 -1
View File
@@ -19,7 +19,7 @@ services:
context: .
dockerfile: docker/dev/Dockerfile.frontend
ports:
- "5173:5173"
- "3000:3000"
env_file:
- ./frontend/.env
restart: unless-stopped
+5 -3
View File
@@ -11,7 +11,9 @@ COPY ./frontend .
# Build the app
RUN npm run build
EXPOSE 5173
RUN npm install -g serve
# Serve built app (no hot reload)
CMD ["npm", "run", "preview", "--", "--host", "0.0.0.0"]
EXPOSE 3000
# Serve built app
CMD ["serve", "-s", "dist"]
+1 -1
View File
@@ -21,4 +21,4 @@ EXPOSE 5000
ENTRYPOINT [ "entrypoint.sh" ]
# This '$@' will be replaced by the CMD
CMD ["npm", "run", "dev"]
CMD ["npm", "start"]