From b23e439eb5a9d6cf21f4cfcc7748a5f9514ab5d6 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Sun, 3 Nov 2019 16:54:57 +0200 Subject: [PATCH] Remove IS_DOCKER ENV --- Dockerfile | 1 - Dockerfile.prod | 1 - 2 files changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1473924..931b522 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ FROM python:3.7-alpine ENV PYTHONUNBUFFERED 1 -ENV IS_DOCKER 0 WORKDIR /app COPY requirements.txt ./ COPY requirements.production.txt ./ diff --git a/Dockerfile.prod b/Dockerfile.prod index 299a4ce..9452861 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -1,6 +1,5 @@ FROM python:3.7-alpine ENV PYTHONUNBUFFERED 1 -ENV IS_DOCKER 0 WORKDIR /app COPY requirements.txt ./ COPY requirements.production.txt ./