mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Use Dockerfile.multiarch as Dockerfile (#2818)
* use Dockerfile.multiarch and delete old Dockerfile * Dockerfile.multiarch -> Dockerfile * nit
This commit is contained in:
parent
d8722b6e91
commit
85ef507ac7
4 changed files with 26 additions and 69 deletions
|
@ -146,7 +146,7 @@ pipeline:
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
settings:
|
settings:
|
||||||
repo: dessalines/lemmy
|
repo: dessalines/lemmy
|
||||||
dockerfile: docker/Dockerfile.multiarch
|
dockerfile: docker/Dockerfile
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
build_args: RUST_RELEASE_MODE=release
|
build_args: RUST_RELEASE_MODE=release
|
||||||
username:
|
username:
|
||||||
|
@ -164,7 +164,7 @@ pipeline:
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
settings:
|
settings:
|
||||||
repo: dessalines/lemmy
|
repo: dessalines/lemmy
|
||||||
dockerfile: docker/Dockerfile.multiarch
|
dockerfile: docker/Dockerfile
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
build_args: RUST_RELEASE_MODE=release
|
build_args: RUST_RELEASE_MODE=release
|
||||||
username:
|
username:
|
||||||
|
@ -182,7 +182,7 @@ pipeline:
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
settings:
|
settings:
|
||||||
repo: dessalines/lemmy
|
repo: dessalines/lemmy
|
||||||
dockerfile: docker/Dockerfile.multiarch
|
dockerfile: docker/Dockerfile
|
||||||
platforms: linux/arm64
|
platforms: linux/arm64
|
||||||
build_args: RUST_RELEASE_MODE=release
|
build_args: RUST_RELEASE_MODE=release
|
||||||
username:
|
username:
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
See [here](https://join-lemmy.org/docs/en/contributing/contributing.html) for contributing Instructions.
|
See [here](https://join-lemmy.org/docs/en/contributing/contributing.html) for contributing Instructions.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# FIXME: use "--platform=$BUILDPLATFORM" and solve openssl cross-compile issue
|
||||||
FROM rust:1.67.0-alpine as builder
|
FROM rust:1.67.0-alpine as builder
|
||||||
|
|
||||||
# Install build dependencies
|
# Install build dependencies
|
||||||
|
@ -7,26 +8,38 @@ RUN apk add --no-cache git openssl-dev libpq-dev musl-dev
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Set cargo build target (can be changed using --build-arg)
|
# Set the target architecture (can be set using --build-arg), buildx set it automatically
|
||||||
ARG CARGO_BUILD_TARGET="x86_64-unknown-linux-musl"
|
ARG TARGETARCH
|
||||||
# Set the release mode (can be changed using --build-arg)
|
|
||||||
|
# This can be set to release using --build-arg
|
||||||
ARG RUST_RELEASE_MODE="debug"
|
ARG RUST_RELEASE_MODE="debug"
|
||||||
|
|
||||||
|
# Prepare toolchain
|
||||||
|
# Docker and Rust use different architecture naming schemas, so we have to convert them
|
||||||
|
RUN case $TARGETARCH in \
|
||||||
|
arm64) RUSTARCH=aarch64 ;; \
|
||||||
|
amd64) RUSTARCH=x86_64 ;; \
|
||||||
|
*) echo "unsupported architecture: $TARGETARCH"; exit 3 ;; \
|
||||||
|
esac \
|
||||||
|
&& echo "RUSTARCH=$RUSTARCH" >> .buildenv
|
||||||
|
|
||||||
# Debug mode build
|
# Debug mode build
|
||||||
RUN --mount=type=cache,target=/app/target \
|
RUN --mount=type=cache,target=/app/target \
|
||||||
if [ "$RUST_RELEASE_MODE" = "debug" ]; then \
|
if [ "$RUST_RELEASE_MODE" = "debug" ]; then \
|
||||||
echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \
|
source .buildenv \
|
||||||
&& rustup target add ${CARGO_BUILD_TARGET} \
|
&& echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \
|
||||||
&& cargo build --target ${CARGO_BUILD_TARGET} \
|
&& rustup target add ${RUSTARCH}-unknown-linux-musl \
|
||||||
&& cp ./target/${CARGO_BUILD_TARGET}/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
|
&& cargo build --target ${RUSTARCH}-unknown-linux-musl \
|
||||||
|
&& cp ./target/${RUSTARCH}-unknown-linux-musl/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Release mode build
|
# Release mode build
|
||||||
RUN \
|
RUN \
|
||||||
if [ "$RUST_RELEASE_MODE" = "release" ]; then \
|
if [ "$RUST_RELEASE_MODE" = "release" ]; then \
|
||||||
rustup target add ${CARGO_BUILD_TARGET} \
|
source .buildenv \
|
||||||
&& cargo build --target ${CARGO_BUILD_TARGET} --release \
|
&& rustup target add ${RUSTARCH}-unknown-linux-musl \
|
||||||
&& cp ./target/${CARGO_BUILD_TARGET}/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
|
&& cargo build --target ${RUSTARCH}-unknown-linux-musl --release \
|
||||||
|
&& cp ./target/${RUSTARCH}-unknown-linux-musl/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The Alpine runner
|
# The Alpine runner
|
||||||
|
|
|
@ -1,55 +0,0 @@
|
||||||
# FIXME: use "--platform=$BUILDPLATFORM" and solve openssl cross-compile issue
|
|
||||||
FROM rust:1.67.0-alpine as builder
|
|
||||||
|
|
||||||
# Install build dependencies
|
|
||||||
RUN apk add --no-cache git openssl-dev libpq-dev musl-dev
|
|
||||||
|
|
||||||
# Set the working directory to /app and copy the source code
|
|
||||||
WORKDIR /app
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
# Set the target architecture (can be set using --build-arg), buildx set it automatically
|
|
||||||
ARG TARGETARCH
|
|
||||||
|
|
||||||
# This can be set to release using --build-arg
|
|
||||||
ARG RUST_RELEASE_MODE="debug"
|
|
||||||
|
|
||||||
# Prepare toolchain
|
|
||||||
# Docker and Rust use different architecture naming schemas, so we have to convert them
|
|
||||||
RUN case $TARGETARCH in \
|
|
||||||
arm64) RUSTARCH=aarch64 ;; \
|
|
||||||
amd64) RUSTARCH=x86_64 ;; \
|
|
||||||
*) echo "unsupported architecture: $TARGETARCH"; exit 3 ;; \
|
|
||||||
esac \
|
|
||||||
&& echo "RUSTARCH=$RUSTARCH" >> .buildenv
|
|
||||||
|
|
||||||
# Debug mode build
|
|
||||||
RUN --mount=type=cache,target=/app/target \
|
|
||||||
if [ "$RUST_RELEASE_MODE" = "debug" ]; then \
|
|
||||||
source .buildenv \
|
|
||||||
&& echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \
|
|
||||||
&& rustup target add ${RUSTARCH}-unknown-linux-musl \
|
|
||||||
&& cargo build --target ${RUSTARCH}-unknown-linux-musl \
|
|
||||||
&& cp ./target/${RUSTARCH}-unknown-linux-musl/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Release mode build
|
|
||||||
RUN \
|
|
||||||
if [ "$RUST_RELEASE_MODE" = "release" ]; then \
|
|
||||||
source .buildenv \
|
|
||||||
&& rustup target add ${RUSTARCH}-unknown-linux-musl \
|
|
||||||
&& cargo build --target ${RUSTARCH}-unknown-linux-musl --release \
|
|
||||||
&& cp ./target/${RUSTARCH}-unknown-linux-musl/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# The Alpine runner
|
|
||||||
FROM alpine:3 as lemmy
|
|
||||||
|
|
||||||
# Install libpq for Postgres
|
|
||||||
RUN apk add --no-cache ca-certificates libpq
|
|
||||||
|
|
||||||
# Copy resources
|
|
||||||
COPY --from=builder /app/lemmy_server /app/lemmy
|
|
||||||
|
|
||||||
EXPOSE 8536
|
|
||||||
CMD ["/app/lemmy"]
|
|
Loading…
Reference in a new issue