lemmy/docker/dev/Dockerfile

63 lines
1.5 KiB
Docker
Raw Normal View History

2020-09-02 15:42:48 +00:00
FROM ekidd/rust-musl-builder:nightly-2020-05-07 as rust
2019-04-10 18:10:57 +00:00
# Cache deps
2019-04-10 18:10:57 +00:00
WORKDIR /app
2019-11-02 06:41:57 +00:00
RUN sudo chown -R rust:rust .
2019-04-10 18:10:57 +00:00
RUN USER=root cargo new server
2020-09-02 15:42:48 +00:00
# Install cargo-build-deps
RUN cargo install --git https://github.com/romac/cargo-build-deps.git
2019-04-09 22:33:49 +00:00
WORKDIR /app/server
2020-09-02 23:17:35 +00:00
RUN mkdir -p lemmy_db/src/ \
lemmy_utils/src/ \
lemmy_api_structs/src/ \
lemmy_rate_limit/src/ \
lemmy
2020-09-02 15:42:48 +00:00
# Copy the cargo tomls
COPY Cargo.toml Cargo.lock ./
COPY lemmy_db/Cargo.toml ./lemmy_db/
COPY lemmy_utils/Cargo.toml ./lemmy_utils/
COPY lemmy_api_structs/Cargo.toml ./lemmy_api_structs/
COPY lemmy_rate_limit/Cargo.toml ./lemmy_rate_limit/
2020-09-02 15:42:48 +00:00
# Cache the deps
RUN cargo build-deps
# Copy the src folders
COPY src ./src/
COPY lemmy_db/src ./lemmy_db/src/
COPY lemmy_utils/src/ ./lemmy_utils/src/
COPY lemmy_api_structs/src/ ./lemmy_api_structs/src/
COPY lemmy_rate_limit/src/ ./lemmy_rate_limit/src/
COPY migrations ./migrations/
2019-04-10 18:10:57 +00:00
2020-06-12 13:29:50 +00:00
# Build for debug
2020-06-14 20:36:18 +00:00
RUN cargo build
2020-01-01 17:01:49 +00:00
2020-09-02 15:42:48 +00:00
FROM ekidd/rust-musl-builder:nightly-2020-05-07 as docs
2020-01-01 17:01:49 +00:00
WORKDIR /app
COPY docs ./docs
RUN sudo chown -R rust:rust .
RUN mdbook build docs/
2020-06-14 20:36:18 +00:00
FROM alpine:3.12
# Install libpq for postgres
RUN apk add libpq
# Install Espeak for captchas
RUN apk add espeak
# Copy resources
COPY config/defaults.hjson /config/defaults.hjson
2020-06-12 13:29:50 +00:00
COPY --from=rust /app/server/target/x86_64-unknown-linux-musl/debug/lemmy_server /app/lemmy
COPY --from=docs /app/docs/book/ /app/documentation/
RUN addgroup -g 1000 lemmy
RUN adduser -D -s /bin/sh -u 1000 -G lemmy lemmy
RUN chown lemmy:lemmy /app/lemmy
USER lemmy
EXPOSE 8536
CMD ["/app/lemmy"]