Compare commits

..

No commits in common. "2ca3ee7bd1f560b1379f68c5427fa3fff24c97dd" and "4fd018e97cfdb6c784513241a23817edd856202d" have entirely different histories.

View File

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