lemmy/docker/prod/Dockerfile

27 lines
574 B
Docker
Raw Normal View History

# Build the project
FROM clux/muslrust:1.67.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 ./ ./
RUN echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs"
2020-06-14 20:36:18 +00:00
RUN cargo build --release
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
FROM alpine:3 as lemmy
2020-06-12 13:29:50 +00:00
# Install libpq for postgres
RUN apk update && apk add libpq
2020-06-12 13:29:50 +00:00
# Copy resources
2021-11-09 22:16:59 +00:00
COPY --from=builder /app/lemmy_server /app/lemmy
2020-06-12 13:29:50 +00:00
EXPOSE 8536
CMD ["/app/lemmy"]