From 5e885dab54048a9f8d02034c49c42146a67fac77 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Wed, 19 Nov 2025 03:25:39 -0500 Subject: [PATCH] Remove env from the dockerfile and add it to the makefile --- Dockerfile | 1 - Makefile | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29b42fb..33db084 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,6 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # Copy the application code into the container COPY ./app /code/app -COPY ./.env /code/.env # Expose port 80 to the outside world EXPOSE 80 diff --git a/Makefile b/Makefile index eac5e11..3f4389c 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ build: run: build docker run --rm -it \ -v /mnt/shadowplays/TWIMG-Eligible:/videos:ro \ + -v .env:/code/.env:re \ --name $(CONTAINER_NAME) \ -p 8000:8000 \ $(IMAGE_NAME) \ No newline at end of file