From 6878a14afe4eb77b814f713a045ffc3c379419a7 Mon Sep 17 00:00:00 2001 From: Davis Muro Date: Tue, 17 Jan 2023 11:20:11 +0300 Subject: [PATCH] Update development dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6d7766e6a9..ca745b5c25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ ENV PYTHONUNBUFFERED 1 ENV DJANGO_SETTINGS_MODULE onadata.settings.docker # Install service dependencies +# hadolint ignore=DL3008 RUN apt-get update -q &&\ apt-get install -y --no-install-recommends software-properties-common \ binutils \ @@ -61,14 +62,13 @@ RUN mkdir -p /srv/onadata && chown -R onadata:onadata /srv COPY . /srv/onadata # Install service requirements -RUN python3.9 -m pip install --no-cache-dir django-silk # hadolint ignore=DL3013 RUN python3.9 -m pip install --no-cache-dir -U pip && \ python3.9 -m pip install --no-cache-dir -r /srv/onadata/requirements/base.pip && \ python3.9 -m pip install --no-cache-dir -r /srv/onadata/requirements/s3.pip && \ python3.9 -m pip install --no-cache-dir -r /srv/onadata/requirements/ses.pip && \ python3.9 -m pip install --no-cache-dir -r /srv/onadata/requirements/azure.pip && \ - python3.9 -m pip install --no-cache-dir uwsgitop + python3.9 -m pip install --no-cache-dir uwsgitop django-silk WORKDIR /srv/onadata