6 lines
130 B
Docker
6 lines
130 B
Docker
FROM python:3.11-slim
|
|
COPY . /home
|
|
WORKDIR /home
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --no-cache-dir -r requirements.txt
|