22 lines
527 B
Docker
22 lines
527 B
Docker
FROM rust:slim AS builder
|
|
|
|
RUN apt-get update -y && \
|
|
apt-get install -y python-pip make g++ python-setuptools libssl-dev pkg-config rsync && \
|
|
pip install dockerize && \
|
|
rustup target add x86_64-unknown-linux-gnu
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN cargo build --release --target x86_64-unknown-linux-gnu
|
|
|
|
RUN mv target/x86_64-unknown-linux-gnu/release/zola /usr/bin
|
|
RUN mkdir -p /workdir
|
|
WORKDIR /workdir
|
|
RUN dockerize -n -o /workdir /usr/bin/zola
|
|
|
|
|
|
FROM scratch
|
|
COPY --from=builder /workdir .
|
|
ENTRYPOINT [ "/usr/bin/zola" ]
|