website-mcknight-tech/Dockerfile

9 lines
105 B
Text
Raw Normal View History

FROM python:3.12-bookworm
EXPOSE 8080
2025-01-31 21:26:45 -08:00
COPY . /site
RUN pip install /site
2025-01-31 21:26:45 -08:00
ENTRYPOINT [ "launch-site" ]