You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM bitnami/minideb AS builder
- RUN install_packages python-pip curl tar python-setuptools rsync binutils
- RUN pip install dockerize
- RUN mkdir -p /workdir
- WORKDIR /workdir
- ENV DOCKER_TAG v0.7.0
- RUN curl -L https://github.com/getzola/zola/releases/download/$DOCKER_TAG/zola-$DOCKER_TAG-x86_64-unknown-linux-gnu.tar.gz | tar xz
- RUN mv zola /usr/bin
- RUN dockerize -n -o /workdir /usr/bin/zola
-
-
- FROM scratch
- COPY --from=builder /workdir .
- ENTRYPOINT [ "/usr/bin/zola" ]
|