From b2839e21fcdb0a815d1175611f0e43b6c402e845 Mon Sep 17 00:00:00 2001 From: imnyang Date: Wed, 6 Nov 2024 22:58:43 +0900 Subject: [PATCH] =?UTF-8?q?env=20=EC=99=84=EC=A0=84=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 17aa0a2..a6e2dd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,6 @@ RUN sed -i 's@deb.debian.org@ftp.kaist.ac.kr@g' /etc/apt/sources.list.d/debian.s WORKDIR /code COPY crontab /code/crontab COPY requirements.txt /code/requirements.txt -COPY .env /code/.env COPY app /code/app RUN apt update && apt -y install cron @@ -17,10 +16,6 @@ RUN chmod 0644 /etc/cron.d/crontab RUN echo "" >> /etc/cron.d/crontab # Ensure newline at end of file RUN /usr/bin/crontab /etc/cron.d/crontab -# Setup Environment Variables - -RUN export $(cat .env | xargs) - # Setup Python Environment WORKDIR /code RUN pip config set global.break-system-packages true