Mudanza de repo
This commit is contained in:
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
RUN pip install flower
|
||||
|
||||
|
||||
COPY . .
|
||||
|
||||
|
||||
|
||||
EXPOSE 8000
|
||||
EXPOSE 5555
|
||||
|
||||
|
||||
# El comando se define en docker-compose para cada servicio (backend, worker, beat, flower)
|
||||
Reference in New Issue
Block a user