Python/Containerfile

6 lines
79 B
Plaintext
Raw Normal View History

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