7 lines
86 B
Docker
7 lines
86 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY worker-2.py .
|
|
|
|
CMD ["python", "worker-2.py"] |