fix: Make entrypoint script executable.

This commit is contained in:
n.tolstov 2025-11-30 20:29:10 +03:00
parent 060101e223
commit 2cfd8d09dc

View File

@ -20,6 +20,9 @@ COPY . .
# Expose port
EXPOSE 8000
# Make entrypoint executable
RUN chmod +x /app/entrypoint.sh
# Use the entrypoint so migrations run before CMD
ENTRYPOINT ["/app/entrypoint.sh"]