lemmy/docker/prod/Dockerfile

62 lines
1.4 KiB
Docker
Raw Normal View History

2021-03-01 17:46:56 +00:00
ARG RUST_BUILDER_IMAGE=ekidd/rust-musl-builder:1.50.0
2020-06-12 13:29:50 +00:00
# Cargo chef plan
FROM $RUST_BUILDER_IMAGE as planner
WORKDIR /app
2021-02-24 22:10:28 +00:00
RUN cargo install cargo-chef
# Copy dirs
COPY ./ ./
RUN sudo chown -R rust:rust .
RUN cargo chef prepare --recipe-path recipe.json
# Cargo chef cache dependencies
FROM $RUST_BUILDER_IMAGE as cacher
ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
WORKDIR /app
2021-02-24 22:10:28 +00:00
RUN cargo install cargo-chef
COPY --from=planner /app/recipe.json ./recipe.json
RUN sudo chown -R rust:rust .
RUN cargo chef cook --release --target ${CARGO_BUILD_TARGET} --recipe-path recipe.json
# Build the project
FROM $RUST_BUILDER_IMAGE as builder
2020-06-12 13:29:50 +00:00
2020-10-26 22:32:50 +00:00
ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
ARG RUSTRELEASEDIR="release"
WORKDIR /app
# Copy over the cached dependencies
COPY --from=cacher /app/target target
COPY --from=cacher /home/rust/.cargo /home/rust/.cargo
# Copy the rest of the dirs
COPY ./ ./
2020-10-26 18:35:19 +00:00
RUN sudo chown -R rust:rust .
2020-06-14 20:36:18 +00:00
RUN cargo build --release
2020-06-12 13:29:50 +00:00
# reduce binary size
2020-06-14 20:36:18 +00:00
RUN strip ./target/$CARGO_BUILD_TARGET/$RUSTRELEASEDIR/lemmy_server
2020-06-12 13:29:50 +00:00
RUN cp ./target/$CARGO_BUILD_TARGET/$RUSTRELEASEDIR/lemmy_server /app/lemmy_server
2020-06-14 20:36:18 +00:00
# The alpine runner
2020-06-14 20:36:18 +00:00
FROM alpine:3.12 as lemmy
2020-06-12 13:29:50 +00:00
# Install libpq for postgres
RUN apk add libpq
2020-06-14 20:36:18 +00:00
RUN addgroup -g 1000 lemmy
RUN adduser -D -s /bin/sh -u 1000 -G lemmy lemmy
2020-06-12 13:29:50 +00:00
# Copy resources
COPY --chown=lemmy:lemmy --from=builder /app/lemmy_server /app/lemmy
2020-06-12 13:29:50 +00:00
RUN chown lemmy:lemmy /app/lemmy
USER lemmy
EXPOSE 8536
CMD ["/app/lemmy"]