More work on deployment

This commit is contained in:
Dominic Ferrando
2025-05-04 17:02:19 -04:00
parent 228b4a7b94
commit f93f9a7529
9 changed files with 31 additions and 5 deletions
+3
View File
@@ -31,5 +31,8 @@ FROM base
# Copy built application
COPY --from=build /app /app
RUN apt-get update && apt-get install -y sqlite3 && rm -rf /var/lib/apt/lists/*
# Start the server by default, this can be overwritten at runtime
CMD [ "bun", "run", "db:seed:prod" ]
CMD [ "bun", "run", "start" ]