lemmy/docker/prod/Dockerfile

35 lines
738 B
Docker
Raw Normal View History

# Build the project
FROM ekidd/rust-musl-builder:1.50.0 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 ./ ./
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"]