mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-24 13:21:19 +00:00
8a05c8f8be
* feat(docker/docs): explain how building lemmy works Signed-off-by: Enzo NOCERA <enzo@nocera.eu> * feat: add arm build * review: rename script & fix typo * feat(ci): allow cross platform compilation * feat(ci): prettier * fix(docker): fix base image name * fix: add dockerfile in CI path Signed-off-by: Enzo Nocera <enzo@nocera.eu> * fix(docker): fix runner name * fix(docker): fix builder base image * fix(docker): fix builder base image platform * fix(docker): avoid using the wrapper adduser/addgroup * feat: avoid adding the whole docker directory in the build context --------- Signed-off-by: Enzo NOCERA <enzo@nocera.eu> Signed-off-by: Enzo Nocera <enzo@nocera.eu> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> Co-authored-by: Nutomic <me@nutomic.com>
23 lines
930 B
Docker
23 lines
930 B
Docker
ARG ARM_CROSS_TOOLCHAIN="ghcr.io/raskyld/aarch64-lemmy-linux-gnu:v0.1.0"
|
|
|
|
FROM ${ARM_CROSS_TOOLCHAIN}
|
|
|
|
# NB(raskyld): Please, do not hesitate to contact me through @raskyld@social.vivaldi.net (mastodon)
|
|
# If you have any question about the cross-toolchain
|
|
LABEL org.opencontainers.image.authors="Enzo Nocera <enzo@nocera.eu>"
|
|
LABEL org.opencontainers.image.source="https://github.com/LemmyNet/lemmy"
|
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
|
LABEL org.opencontainers.image.description="A prebuilt lemmy server using a cross toolchain from amd64 to aarch64/arm64"
|
|
|
|
ARG CARGO_BUILD_FEATURES=default
|
|
ARG RUST_RELEASE_MODE=debug
|
|
|
|
WORKDIR /home/lemmy/src
|
|
USER 10001:10001
|
|
|
|
COPY --chown=lemmy:lemmy . ./
|
|
|
|
ENV RUST_RELEASE_MODE=${RUST_RELEASE_MODE} \
|
|
CARGO_BUILD_FEATURES=${CARGO_BUILD_FEATURES}
|
|
|
|
RUN --mount=type=cache,target=./target,uid=10001,gid=10001 bash ./docker/builders/lemmy-builder-arm64/docker-build.sh
|