Vincent Batts
cdd9e3aaef
Also, SRC_DIR is no longer used. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
11 lines
280 B
Docker
11 lines
280 B
Docker
FROM docker.io/library/fedora:latest
|
|
|
|
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
|
|
|
|
ENTRYPOINT ["/usr/local/bin/BuildSourceImage.sh"]
|