Files
SPKL-BG-SpecklePY-LIB/Dockerfile
T
Gergő Jedlicska 5c82c19374 add dockerfile
2023-06-23 10:50:43 +02:00

7 lines
129 B
Docker

FROM python:3.11-slim
RUN pip install poetry
RUN poetry config virtualenvs.create false
COPY . .
RUN poetry install --only main