11 lines
231 B
Docker
11 lines
231 B
Docker
FROM python:3.8.2
|
|
|
|
WORKDIR /app
|
|
COPY config config
|
|
COPY api api
|
|
COPY ui ui
|
|
COPY manage.py manage.py
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["gunicorn","-b",":8000", "-w", "4", "config.wsgi"] |