From ad232020d57d2c77dfd5400dc4a8290b484c8ba2 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 14 Jul 2024 15:30:27 -0500 Subject: Initial commit --- Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..70f65a6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM python:3.10.12 as base + +WORKDIR /project + +VOLUME ["/static"] +VOLUME ["/media"] +VOLUME ["/data"] + +COPY requirements.txt /project/ + +RUN pip install -r requirements.txt + +COPY . /project + +EXPOSE 80 443 -- cgit v1.2.3