dockerfile fix

This commit is contained in:
Pták 2024-04-10 19:41:34 +02:00
parent be0969854c
commit c9a6c61f69

View file

@ -4,4 +4,4 @@ COPY requirements.txt .
RUN pip install --no-cache-dir --use-pep5 -r requirements.txt
COPY . .
EXPOSE 80
CMD ["gunicorn", "wsgi:app", "-b" "0.0.0.0:80"]
CMD ["gunicorn", "wsgi:app", "-b", "0.0.0.0:80"]