python_test_project/Containerfile

6 lines
92 B
Plaintext
Raw Normal View History

2024-11-11 06:11:21 -08:00
FROM python:3.7-slim
COPY . /app
WORKDIR /app
RUN pip install .
2024-11-11 06:12:40 -08:00
CMD ["python_test_project"]