python_test_project/Containerfile
2024-11-11 14:12:40 +00:00

6 lines
92 B
Docker

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