9 lines
182 B
Docker
9 lines
182 B
Docker
FROM python:3.11.3-alpine
|
|
LABEL authors="Pedro Pérez"
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "main.py"] |