diff --git a/Dockerfile b/Dockerfile index 3a78d9a..03a743e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ RUN pip install "pandas-flavor==0.2.0" "pingouin==0.3.8" # 5. Remaining Pipenv app COPY Pipfile Pipfile.lock ./ RUN pip install pipenv && pipenv install --system --skip-lock +RUN mkdir -p /app/site/surveyapp/uploads COPY . . diff --git a/docker-compose.yaml b/docker-compose.yaml index 79a8450..70efc79 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -13,6 +13,8 @@ services: - PYTHONUNBUFFERED=1 networks: - web_traffic + volumes: + - ./uploads:/app/site/surveyapp/uploads networks: web_traffic: