diff --git a/Dockerfile b/Dockerfile index 61ffc62..1463fda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,12 +10,6 @@ ARG VERSION # # Note: Additional labels are added by the build workflow. ### -# github@cisa.dhs.gov is a very generic email distribution, and it is -# unlikely that anyone on that distribution is familiar with the -# particulars of your repository. It is therefore *strongly* -# suggested that you use an email address here that is specific to the -# person or group that maintains this repository; for example: -# LABEL org.opencontainers.image.authors="vm-fusion-dev-group@trio.dhs.gov" LABEL org.opencontainers.image.authors="mostafa.abdelbaky@inl.gov" LABEL org.opencontainers.image.vendor="Cybersecurity and Infrastructure Security Agency" @@ -59,7 +53,7 @@ ENV DEPS \ RUN apk --no-cache --quiet add ${DEPS} # Install Con-PCA-Tasks binary file -RUN wget "https://github.com/cisagov/con-pca-tasks/releases/download/v0.0.1/pca-linux-amd64" +RUN wget https://github.com/cisagov/con-pca-tasks/releases/download/v0.0.1/pca-linux-amd64 RUN mv pca-linux-amd64 /bin/pca RUN ["chmod", "+x", "/bin/pca"]