From b291638fa6c23e1e79a76ffd0ac2619a12394c2b Mon Sep 17 00:00:00 2001 From: Devin Arendt Date: Mon, 11 Sep 2023 16:33:02 -0500 Subject: [PATCH] - volume permissions thingy --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be72042..d686962 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM python:3.9.18-bullseye -WORKDIR /app +VOLUME [ "/data" ] +WORKDIR /data COPY . . RUN pip install --no-cache-dir -r requirements.txt CMD ["python3", "./tubular.py"]