fix: Use sh to run start.sh (bypass permission issue)

This commit is contained in:
fullsizemalt 2025-12-21 15:38:36 -08:00
parent ae732074e2
commit 1242b5d2ed

View file

@ -7,8 +7,5 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Make startup script executable
RUN chmod +x start.sh
# Run migrations then start server
CMD ["./start.sh"]
# Run migrations then start server (shell form handles permissions)
CMD ["sh", "start.sh"]