From 1acdcb8bf223ee8f10a651ac766ccd6ed4e78aab Mon Sep 17 00:00:00 2001 From: samwiseg0 Date: Wed, 24 Apr 2019 12:05:00 -0400 Subject: [PATCH] Enable Debug by default for docker images --- Dockerfile | 2 +- Dockerfile.arm | 2 +- Dockerfile.arm64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e635b17..782a3a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM amd64/python:3.7.2-alpine LABEL maintainers="dirtycajunrice,samwiseg0" -ENV DEBUG="False" +ENV DEBUG="True" WORKDIR /app diff --git a/Dockerfile.arm b/Dockerfile.arm index da5c42a..9f7fed1 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -2,7 +2,7 @@ FROM arm32v6/python:3.7.2-alpine LABEL maintainers="dirtycajunrice,samwiseg0" -ENV DEBUG="False" +ENV DEBUG="True" WORKDIR /app diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index 4ae6d4d..9ad67eb 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -2,7 +2,7 @@ FROM arm64v8/python:3.7.2-alpine LABEL maintainers="dirtycajunrice,samwiseg0" -ENV DEBUG="False" +ENV DEBUG="True" WORKDIR /app