Compare commits

..

No commits in common. "4fd018e97cfdb6c784513241a23817edd856202d" and "55cff2f408ae9773e601ae5495fe17207139cc23" have entirely different histories.

View File

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