14 lines
222 B
Docker
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"]
|