containers-bsi/Dockerfile
Vincent Batts b0940d1f87
Dockerfile: trim down to the bash rewrite
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-09-10 09:08:33 -04:00

14 lines
222 B
Docker

FROM fedora
RUN dnf install -y jq skopeo findutils file
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"]