slimmed down the docker image size

This commit is contained in:
daniel31x13
2025-12-21 10:26:23 -05:00
parent ab19df767c
commit 1558854f78
3 changed files with 11 additions and 3 deletions

View File

@@ -6,3 +6,9 @@ docker-compose.yml
Dockerfile
README.md
.yarn/install-state.gz
./apps/mobile
**/.next/cache
**/.next/cache/**
data
data.ms
.git

3
.gitignore vendored
View File

@@ -49,9 +49,10 @@ certificates
# generated files and folders
/data
/data.ms
meilisearch
.idea
prisma/dev.db
data.ms
.turbo
service-account-file.json

View File

@@ -56,7 +56,8 @@ RUN set -eux && \
COPY . .
RUN yarn prisma:generate && \
yarn web:build
yarn web:build && \
rm -rf apps/web/.next/cache
HEALTHCHECK --interval=30s \
--timeout=5s \