From ff478dde427a883f51c2907819d2a5dc44c05bfb Mon Sep 17 00:00:00 2001 From: Mark Do Date: Sun, 5 May 2024 17:21:46 +0000 Subject: [PATCH] dockerfile update --- Dockerfile | 34 +++++++++++----------------------- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f31657..0e9e937 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,39 +3,27 @@ FROM python:3.11-bookworm # Copy files into container WORKDIR /app COPY /src/main.py /app - -# Get ENV vars -ARG S3_SECRET_KEY -ARG SSH_DEPLOY_KEY -ARG S3CFG_CONFIG - -ENV S3CFG_CONFIG=$S3CFG_CONFIG -ENV S3_SECRET_KEY=$S3_SECRET_KEY -ENV SSH_DEPLOY_KEY=$SSH_DEPLOY_KEY - -RUN echo -e "${SSH_DEPLOY_KEY}" -RUN echo $S3_SECRET_KEY -RUN echo S3CFG_CONFIG +COPY /src/run.sh /app # Copy the private SSH key from github provisioning to the container -RUN mkdir /root/.ssh/ -RUN echo -e "${SSH_DEPLOY_KEY}" > /root/.ssh/id_rsa -RUN cat /root/.ssh/id_rsa +# RUN mkdir /root/.ssh/ +# RUN echo -e "${SSH_DEPLOY_KEY}" > /root/.ssh/id_rsa +# RUN cat /root/.ssh/id_rsa # COPY id_rsa /root/.ssh/id_rsa # Set permissions for the SSH key -RUN chmod 600 /root/.ssh/id_rsa +# RUN chmod 600 /root/.ssh/id_rsa # Add the Git host to the list of known hosts -RUN ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts +# RUN ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts # Clone the repository using the deploy key -RUN git clone git@github.com:WATonomous/infra-config.git +# RUN git clone git@github.com:WATonomous/infra-config.git # Install s3cmd -RUN pip install s3cmd -COPY s3cfg /app/asset-manager/s3cfg +# RUN pip install s3cmd # Run asset-management script - -CMD ["python3", "src/main.py"] +RUN chmod +x run.sh +CMD ["./run.sh"] +# CMD ["echo $PATH"]