6 lines
127 B
Docker
6 lines
127 B
Docker
FROM python:3.10
|
|
|
|
COPY requirements.txt /tmp/requirements.txt
|
|
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
|
|
|
COPY . . |