Python/Containerfile

6 lines
85 B
Plaintext
Raw Permalink Normal View History

2024-11-09 08:01:27 -08:00
FROM python:3.7-slim
COPY . /app
WORKDIR /app
RUN pip install .
CMD ["project_name"]