From 50b6d45e58c78f2f25cc0025c66bc1413a5f3b53 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Sun, 13 Jun 2021 21:51:17 +0200 Subject: [PATCH] Add sqlite --- Dockerfiles/django/Dockerfile | 2 +- docker-compose.staging.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfiles/django/Dockerfile b/Dockerfiles/django/Dockerfile index dde78a3..088520f 100644 --- a/Dockerfiles/django/Dockerfile +++ b/Dockerfiles/django/Dockerfile @@ -11,7 +11,7 @@ RUN dpkg-reconfigure -f noninteractive tzdata # install software RUN apt update -RUN apt install -y build-essential python3-pip gettext +RUN apt install -y build-essential python3-pip sqlite3 gettext # install dependencies RUN pip3 install --upgrade pip diff --git a/docker-compose.staging.yaml b/docker-compose.staging.yaml index a79ec8d..86eeeaf 100644 --- a/docker-compose.staging.yaml +++ b/docker-compose.staging.yaml @@ -12,7 +12,7 @@ services: DEBUG: "True" ALLOWED_HOSTS: "" SECRET_KEY: "secret" - DB: "database.sqlite" + DB: "../database.sqlite" DOMAIN: "" DOMAIN_URL: "https://" STATIC_URL: "/static/"