Merge pull request #11 from vbatts/rewrite

Complete Rewrite
This commit is contained in:
Valentin Rothberg 2019-09-10 15:39:15 +02:00 committed by GitHub
commit 43b2d2e7b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1115 additions and 67 deletions

File diff suppressed because it is too large Load diff

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM fedora
RUN dnf install -y jq skopeo findutils file 'dnf-command(download)'
COPY ./BuildSourceImage.sh /usr/local/bin/BuildSourceImage.sh
RUN mkdir -p /output
ENV OUTPUT_DIR=/output
VOLUME /output
ENV SRC_DIR=/src
VOLUME /src
ENTRYPOINT ["/usr/local/bin/BuildSourceImage.sh"]