test / Dockerfile
obaes's picture
ok
f5ebb2a
raw
history blame contribute delete
No virus
178 Bytes
FROM python:3.11
WORKDIR /code
RUN pip install --upgrade pip
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt