13 lines
211 B
Docker
13 lines
211 B
Docker
FROM python:3-slim
|
|
|
|
WORKDIR usr/src/app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["gunicorn","--config", "gunicorn_config.py", "year-progress:app"]
|