python_test_project/Containerfile

6 lines
85 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 .
CMD ["project_name"]