12 lines
159 B
Docker
12 lines
159 B
Docker
FROM docker.io/python:3.12.5
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt --no-cache-dir
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["python", "-m"]
|