fixing migration for the production

This commit is contained in:
=
2025-12-30 23:30:25 +03:30
parent 497cf5b544
commit a6f1cdbd14

View File

@@ -27,7 +27,8 @@ COPY . /app/
# Expose the Django port
EXPOSE 8000
ENTRYPOINT [ "/Entrypoint.sh" ]
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
# Run Djangos development server
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]