Python/Containerfile
2024-11-09 16:23:02 +00:00

6 lines
79 B
Docker

FROM python:3.7-slim
COPY . /app
WORKDIR /app
RUN pip install .
CMD ["python"]