Add database.sqlite creation step to Dockerfile

This commit is contained in:
Your Name
2025-04-29 13:51:49 -04:00
parent d8a3c5abe0
commit 43932835b4

View File

@@ -22,6 +22,9 @@ RUN cd frontend && npm run build
# Build backend
RUN npm run build
# Create database file
RUN touch database.sqlite
# Production stage
FROM node:18-alpine