Add exposed port to Dockerfile

This commit is contained in:
Julius Freudenberger 2023-02-04 18:17:08 +01:00
parent 86e508bc9d
commit ebe3c864fa

View file

@ -4,4 +4,5 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["gunicorn", "-b", "0.0.0.0", "app:app"]