Compare commits

..

No commits in common. "55cff2f408ae9773e601ae5495fe17207139cc23" and "8f5a97f18e72a29c8107f25402367c7ae79d1146" have entirely different histories.

View File

@ -24,7 +24,7 @@ COPY . .
RUN python manage.py collectstatic --noinput
# Expose port
EXPOSE 8080
EXPOSE 8000
# Run migrations and start Gunicorn
CMD sh -c "python manage.py migrate && gunicorn booking_system.wsgi:application --bind 0.0.0.0:8080 --workers 3"
CMD sh -c "python manage.py migrate && gunicorn booking_system.wsgi:application --bind 0.0.0.0:8000 --workers 3"