You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
187 B
11 lines
187 B
FROM python:latest
|
|
|
|
WORKDIR /app
|
|
COPY ./requirements.txt /app/
|
|
EXPOSE 8000
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
CMD ["gunicorn", "app:app", "-w", "3", "-b", "0.0.0.0:8000"]
|