nightly_build:
image: woodpeckerci/plugin-docker-buildx
settings:
- dockerfile: docker/Dockerfile
+ repo: dessalines/lemmy
+ dockerfile: docker/Dockerfile.multiarch
+ platforms: linux/amd64
build_args: RUST_RELEASE_MODE=release
username:
from_secret: docker_username
password:
from_secret: docker_password
- repo: dessalines/lemmy
# add_host: github.com:140.82.112.3,static.crates.io:18.154.227.73,crates.io:108.138.64.68,dl-cdn.alpinelinux.org:146.75.30.133
tag: dev
when:
publish_release_docker_image_amd:
image: woodpeckerci/plugin-docker-buildx
settings:
- dockerfile: docker/Dockerfile
+ repo: dessalines/lemmy
+ dockerfile: docker/Dockerfile.multiarch
+ platforms: linux/amd64
build_args: RUST_RELEASE_MODE=release
username:
from_secret: docker_username
password:
from_secret: docker_password
- repo: dessalines/lemmy
# add_host: github.com:140.82.112.3,static.crates.io:18.154.227.73,crates.io:108.138.64.68,dl-cdn.alpinelinux.org:146.75.30.133
auto_tag: true
# auto_tag_suffix: linux-amd64
publish_release_docker_image_arm:
image: woodpeckerci/plugin-docker-buildx
settings:
- dockerfile: docker/Dockerfile
+ repo: dessalines/lemmy
+ dockerfile: docker/Dockerfile.multiarch
+ platforms: linux/arm64
build_args: RUST_RELEASE_MODE=release
username:
from_secret: docker_username
password:
from_secret: docker_password
- repo: dessalines/lemmy
# add_host: github.com:140.82.112.3,static.crates.io:18.154.227.73,crates.io:108.138.64.68,dl-cdn.alpinelinux.org:146.75.30.133
auto_tag: true
# auto_tag_suffix: linux-arm64
secrets: [cargo_api_token]
when:
event: tag
- #platform: linux/amd64
+ #platform: linux/amd64
notify_on_failure:
image: alpine:3
-FROM clux/muslrust:1.67.0 as builder
-WORKDIR /app
-ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
+FROM rust:1.67.0-alpine as builder
-# This can be set to release using --build-arg
-ARG RUST_RELEASE_MODE="debug"
+# 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 . .
-# Build the project
-
+# Set cargo build target (can be changed using --build-arg)
+ARG CARGO_BUILD_TARGET="x86_64-unknown-linux-musl"
+# Set the release mode (can be changed using --build-arg)
+ARG RUST_RELEASE_MODE="debug"
+
# Debug mode build
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" \
+ && rustup target add ${CARGO_BUILD_TARGET} \
&& cargo build --target ${CARGO_BUILD_TARGET} \
- && cp ./target/$CARGO_BUILD_TARGET/$RUST_RELEASE_MODE/lemmy_server /app/lemmy_server; \
+ && cp ./target/${CARGO_BUILD_TARGET}/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
fi
# Release mode build
RUN \
- if [ "$RUST_RELEASE_MODE" = "release" ] ; then \
- cargo build --target ${CARGO_BUILD_TARGET} --release \
- && cp ./target/$CARGO_BUILD_TARGET/$RUST_RELEASE_MODE/lemmy_server /app/lemmy_server; \
+ if [ "$RUST_RELEASE_MODE" = "release" ]; then \
+ rustup target add ${CARGO_BUILD_TARGET} \
+ && cargo build --target ${CARGO_BUILD_TARGET} --release \
+ && cp ./target/${CARGO_BUILD_TARGET}/${RUST_RELEASE_MODE}/lemmy_server /app/lemmy_server; \
fi
-# The alpine runner
+# The Alpine runner
FROM alpine:3 as lemmy
-# Install libpq for postgres
-RUN apk add libpq
+# Install libpq for Postgres
+RUN apk add --no-cache ca-certificates libpq
# Copy resources
COPY --from=builder /app/lemmy_server /app/lemmy
+++ /dev/null
-ARG RUST_BUILDER_IMAGE=rust:1.64-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 git \
- && rm -rf /var/lib/apt/lists/*
-
-WORKDIR /app
-
-COPY ./ ./
-RUN echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs"
-
-RUN cargo build --release
-
-RUN cp ./target/release/lemmy_server /app/lemmy_server
-
-# The Debian runner
-FROM debian:buster-slim as lemmy
-
-# Install libpq for postgres
-RUN apt-get update \
- && apt-get -y install --no-install-recommends postgresql-client libc6 libssl1.1 ca-certificates \
- && rm -rf /var/lib/apt/lists/*
-
-RUN addgroup --gid 1000 lemmy
-RUN useradd --no-create-home --shell /bin/sh --uid 1000 --gid 1000 lemmy
-
-# Copy resources
-COPY --chown=lemmy:lemmy --from=builder /app/lemmy_server /app/lemmy
-
-RUN chown lemmy:lemmy /app/lemmy
-USER lemmy
-EXPOSE 8536
-CMD ["/app/lemmy"]
--- /dev/null
+# 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"]