Python/Containerfile
Simon Diesenreiter 43ff10817d Revert " Ready to clone and code."
This reverts commit e4f251f138a9bfbefb814afb29b84c3103d72e16.
2024-11-09 09:05:53 -08:00

6 lines
85 B
Docker

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