should include creds within packaging dir

This commit is contained in:
Erica Marigold 2023-07-27 10:22:09 +05:30 committed by GitHub
parent 2d975c3ed4
commit 572c02d0bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,9 +14,9 @@ RUN useradd -m builder && \
RUN mkdir -p /home/builder/.ssh && \
touch /home/builder/.ssh/known_hosts
COPY ~/ssh_creds/. /home/builder/
COPY ./ssh_creds/.ssh /home/builder/.ssh
COPY . /home/builder/packaging_scripts
COPY *.PKGBUILD *.sh ssh_config /home/builder/packaging_scripts
RUN chown -R builder:builder /home/builder/.ssh && \
chmod 600 /home/builder/.ssh/* -R && \