feat: add Dockerfile and entrypoint script for containerized application
Some checks failed
Build Docker Image / build (push) Failing after 33s

This commit is contained in:
2026-03-08 15:37:59 +01:00
parent efeea1ae19
commit 05b29a62bb
3 changed files with 107 additions and 0 deletions

9
docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
# Migrate the database
npm run db:migrate
# Start the production server
node build/index.js