mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 06:14:05 +00:00
25dd1a21e2
* Trying to fix arm build. * Version 0.9.0-rc.8 * Trying to fix arm build 2. * Version 0.9.0-rc.9 * Checking time when removing lto. * Version 0.9.0-rc.10 * Adding back in arm tests. * Version 0.9.0-rc.11
49 lines
1.3 KiB
Docker
49 lines
1.3 KiB
Docker
ARG RUST_BUILDER_IMAGE=rust:1.47-slim-buster
|
|
|
|
# Build Lemmy
|
|
FROM $RUST_BUILDER_IMAGE as builder
|
|
|
|
# Install compilation dependencies
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./ ./
|
|
|
|
RUN cargo build --release
|
|
|
|
# reduce binary size
|
|
RUN strip ./target/release/lemmy_server
|
|
|
|
RUN cp ./target/release/lemmy_server /app/lemmy_server
|
|
|
|
# Build the docs
|
|
FROM $RUST_BUILDER_IMAGE as docs
|
|
WORKDIR /app
|
|
RUN cargo install mdbook --git https://github.com/Nutomic/mdBook.git --branch localization --rev 0982a82 --force
|
|
COPY docs ./docs
|
|
RUN mdbook build docs/
|
|
|
|
# The Debian runner
|
|
FROM debian:buster-slim as lemmy
|
|
|
|
# Install libpq for postgres and espeak for captchas
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends espeak postgresql-client libc6 libssl1.1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN addgroup --gid 1000 lemmy
|
|
RUN adduser --no-create-home --shell /bin/sh --uid 1000 --gid 1000 lemmy
|
|
|
|
# Copy resources
|
|
COPY --chown=lemmy:lemmy config/defaults.hjson /config/defaults.hjson
|
|
COPY --chown=lemmy:lemmy --from=builder /app/lemmy_server /app/lemmy
|
|
COPY --chown=lemmy:lemmy --from=docs /app/docs/book/ /app/documentation/
|
|
|
|
RUN chown lemmy:lemmy /app/lemmy
|
|
USER lemmy
|
|
EXPOSE 8536
|
|
CMD ["/app/lemmy"]
|