containers-bsi/Dockerfile
Vincent Batts e99be3b2f8
Dockerfile: plugins for dnf download
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-09-10 09:08:41 -04:00

14 lines
246 B
Docker

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