skip to Main Content

Dockerfile Cant Find Successfully Copied Files with RUN

I am attempting to develop a Mozilla SOPS Docker container that uses Age for encryption. Here are my files: ./Dockerfile: FROM alpine:latest # Install sops RUN wget https://github.com/mozilla/sops/releases/download/v3.8.1/sops-v3.8.1.linux.amd64 -O /usr/local/bin/sops && chmod +x /usr/local/bin/sops # Install age RUN wget https://github.com/FiloSottile/age/releases/download/v1.1.1/age-v1.1.1-linux-amd64.tar.gz…

VIEW QUESTION
Back To Top
Search