diff --git a/Dockerfile b/Dockerfile index a0d3f99..379a4e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN pip install --no-cache-dir --upgrade pip && \ COPY app /app/app COPY config /app/config +COPY templates /app/templates COPY .env.example /app/.env.example EXPOSE 18080 diff --git a/docker-compose.yaml b/docker-compose.yaml index 0ed5075..7719bce 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -10,5 +10,5 @@ services: - .env volumes: - ./config:/app/config:ro - - ${APP_DATA_DIR:-../sub-provider-data}:/app/data + - ./data:/app/data - ./output:/app/output