From fc912b419b3a39cf264807b475c08f3afb4ef291 Mon Sep 17 00:00:00 2001 From: minchulahn Date: Fri, 11 Aug 2023 14:27:20 +0900 Subject: [PATCH] =?UTF-8?q?Dashboard=20Dockerfile=EC=9D=98=20arg,=20env=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile.dashboard | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Dockerfile.dashboard b/Dockerfile.dashboard index cd59488..733f02e 100644 --- a/Dockerfile.dashboard +++ b/Dockerfile.dashboard @@ -9,16 +9,8 @@ RUN apt-get update \ COPY requirements-dashboard.txt requirements-dashboard.txt RUN pip install --no-cache-dir --upgrade pip && pip install -r requirements-dashboard.txt -ARG SSH_PRIVATE_KEY -ARG GITHUB_TOKEN ENV PYTHONUNBUFFERED=1 ENV PYTHONIOENCODING=UTF-8 -ENV GITHUB_TOKEN=${GITHUB_TOKEN} - -RUN mkdir /root/.ssh \ - && echo "$SSH_PRIVATE_KEY" >> /root/.ssh/id_rsa \ - && chmod 600 /root/.ssh/id_rsa \ - && ssh-keyscan github.com >> /root/.ssh/known_hosts COPY . .