- cleaned up Dockefiles - added healthchecks to docker-compose files - moved celery & celery-beat to one container - cleaned up nginx config
8 lines
111 B
Docker
8 lines
111 B
Docker
FROM python:3.11
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
|
|
WORKDIR /app
|