From 039d0c2fc0663034d2dbc03d13f164e4d9fc1c78 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 7 Jul 2024 04:53:49 -0700 Subject: [PATCH] Use a local secret file instead of from an arg --- LinuxGeneralCompiler/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index fc095c2..8a30d9d 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -2,9 +2,7 @@ FROM debian:latest LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com" -ARG JENKINS_SECRET=notset - -COPY ${JENKINS_SECRET} /agent.secret +COPY ./agent.secret /agent.secret ENV DOCKER 1 USER 0