2020-12-23 04:52:52 +00:00
|
|
|
FROM python:3-slim
|
|
|
|
|
|
|
|
WORKDIR /bss
|
|
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
RUN mkdir .ssh
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
# port 80, one worker, 210s timeout, from prom.py file.
|
2020-12-23 06:02:40 +00:00
|
|
|
CMD [ "gunicorn", "-b :8000", "-w 1", "-t 210", "prom:app" ]
|