Switch from MySQL to SQLite for simpler database setup

This commit is contained in:
Your Name
2025-04-29 13:44:36 -04:00
parent e74db19602
commit e90fdd6201
4 changed files with 29 additions and 71 deletions

View File

@@ -37,6 +37,7 @@ RUN npm install --production
# Copy built files from builder stage
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/frontend/build ./frontend/build
COPY --from=builder /app/database.sqlite ./database.sqlite
# Expose port
EXPOSE 3000