mirror of
https://github.com/Steffo99/distributed-arcade.git
synced 2024-12-04 05:54:24 +00:00
Fix multiplatform Docker image builds
This commit is contained in:
parent
9f6381071e
commit
343ce7e240
2 changed files with 82 additions and 12 deletions
16
.dockerignore
Normal file
16
.dockerignore
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
/.devcontainer/
|
||||||
|
/.github/
|
||||||
|
/.idea/
|
||||||
|
/.vscode/
|
||||||
|
/benches/
|
||||||
|
/examples/
|
||||||
|
/media/
|
||||||
|
/target/
|
||||||
|
/tests/
|
||||||
|
/.dockerignore
|
||||||
|
/.gitignore
|
||||||
|
/Dockerfile
|
||||||
|
/LICENSE
|
||||||
|
/README.md
|
||||||
|
/rustfmt.toml
|
||||||
|
**/*.rs.bk
|
78
Dockerfile
78
Dockerfile
|
@ -1,21 +1,75 @@
|
||||||
FROM rust:1.65 AS files
|
FROM --platform=${BUILDPLATFORM} rust:1.68-bullseye AS builder
|
||||||
WORKDIR /usr/src/revenants-brooch
|
ARG BUILDPLATFORM
|
||||||
COPY . .
|
ARG TARGETPLATFORM
|
||||||
|
|
||||||
FROM files AS install
|
RUN apt-get update && \
|
||||||
RUN cargo install --path . --all-features --bins
|
apt-get upgrade --assume-yes
|
||||||
|
|
||||||
FROM debian:buster AS system
|
RUN \
|
||||||
RUN apt-get update
|
mkdir .cargo && \
|
||||||
RUN apt-get install -y libssl1.1 ca-certificates
|
echo '[net]' >> .cargo/config.toml && \
|
||||||
RUN rm -rf /var/lib/apt/lists/*
|
echo 'git-fetch-with-cli = true' >> .cargo/config.toml && \
|
||||||
COPY --from=install /usr/local/cargo/bin/distributed_arcade /usr/local/bin/distributed_arcade
|
echo >> .cargo/config.toml && \
|
||||||
|
if [ "${BUILDPLATFORM}" != "${TARGETPLATFORM}" ]; then \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \
|
||||||
|
apt-get install --assume-yes gcc-x86-64-linux-gnu; \
|
||||||
|
echo '[target.x86_64-unknown-linux-gnu]' >> .cargo/config.toml; \
|
||||||
|
echo 'linker = "x86-64-linux-gnu-gcc"' >> .cargo/config.toml; \
|
||||||
|
echo >> .cargo/config.toml; \
|
||||||
|
fi && \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
|
||||||
|
apt-get install --assume-yes gcc-aarch64-linux-gnu; \
|
||||||
|
echo '[target.aarch64-unknown-linux-gnu]' >> .cargo/config.toml; \
|
||||||
|
echo 'linker = "aarch64-linux-gnu-gcc"' >> .cargo/config.toml; \
|
||||||
|
echo >> .cargo/config.toml; \
|
||||||
|
fi && \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/arm/v7" ]; then \
|
||||||
|
apt-get install --assume-yes gcc-arm-linux-gnueabihf; \
|
||||||
|
echo '[target.armv7-unknown-linux-gnueabihf]' >> .cargo/config.toml; \
|
||||||
|
echo 'linker = "arm-linux-gnueabihf-gcc"' >> .cargo/config.toml; \
|
||||||
|
echo >> .cargo/config.toml; \
|
||||||
|
fi \
|
||||||
|
fi
|
||||||
|
|
||||||
|
RUN \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \
|
||||||
|
RUSTTARGET=x86_64-unknown-linux-gnu; \
|
||||||
|
fi && \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
|
||||||
|
RUSTTARGET=aarch64-unknown-linux-gnu; \
|
||||||
|
fi && \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/arm/v7" ]; then \
|
||||||
|
RUSTTARGET=armv7-unknown-linux-gnueabihf; \
|
||||||
|
fi && \
|
||||||
|
rustup target add ${RUSTTARGET}
|
||||||
|
|
||||||
|
WORKDIR /usr/src/distributed_arcade/
|
||||||
|
COPY ./ ./
|
||||||
|
|
||||||
|
RUN \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \
|
||||||
|
RUSTTARGET=x86_64-unknown-linux-gnu; \
|
||||||
|
fi && \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
|
||||||
|
RUSTTARGET=aarch64-unknown-linux-gnu; \
|
||||||
|
fi && \
|
||||||
|
if [ "${TARGETPLATFORM}" = "linux/arm/v7" ]; then \
|
||||||
|
RUSTTARGET=armv7-unknown-linux-gnueabihf; \
|
||||||
|
fi && \
|
||||||
|
cargo build --all-features --bins --release --target=${RUSTTARGET}
|
||||||
|
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
|
FROM --platform=${TARGETPLATFORM} rust:1.68-slim-bullseye AS final
|
||||||
|
|
||||||
|
WORKDIR /usr/src/distributed_arcade/
|
||||||
|
COPY --from=builder \
|
||||||
|
/usr/src/distributed_arcade/target/*/release/distributed_arcade \
|
||||||
|
/usr/bin/
|
||||||
|
|
||||||
FROM system AS entrypoint
|
|
||||||
ENTRYPOINT ["distributed_arcade"]
|
ENTRYPOINT ["distributed_arcade"]
|
||||||
CMD []
|
CMD []
|
||||||
|
|
||||||
FROM entrypoint AS final
|
|
||||||
LABEL org.opencontainers.image.title="Distributed Arcade"
|
LABEL org.opencontainers.image.title="Distributed Arcade"
|
||||||
LABEL org.opencontainers.image.description="Fast and simple scoreboard service for games"
|
LABEL org.opencontainers.image.description="Fast and simple scoreboard service for games"
|
||||||
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
||||||
|
|
Loading…
Reference in a new issue