aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.build
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.build')
-rw-r--r--Dockerfile.build24
1 files changed, 13 insertions, 11 deletions
diff --git a/Dockerfile.build b/Dockerfile.build
index 3bbaf39..0158b8a 100644
--- a/Dockerfile.build
+++ b/Dockerfile.build
@@ -1,16 +1,18 @@
1FROM debian:bookworm AS deb_extractor
2RUN cd /tmp && \
3 apt-get update && apt-get download \
4 libc6 && \
5 mkdir /dpkg && \
6 for deb in *.deb; do dpkg --extract $deb /dpkg || exit 10; done
7
1FROM rust:1.73 as builder 8FROM rust:1.73 as builder
2WORKDIR /usr/src/webol 9WORKDIR /app
3COPY . . 10COPY . .
4# RUN rustup target add armv7-unknown-linux-gnueabihf 11RUN cargo build --release
5# RUN apt update && apt install gcc-arm-linux-gnueabihf -y
6# RUN CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc cargo install --path . --target armv7-unknown-linux-gnueabihf
7RUN cargo install --path .
8 12
9# FROM --platform=arm64 debian:bullseye-slim 13FROM gcr.io/distroless/cc
10FROM debian:trixie-slim 14COPY --from=builder /app/target/release/webol /
11# RUN apt-get update && apt-get install -y libc6 && rm -rf /var/lib/apt/lists/* 15COPY --from=deb_extractor /dpkg /
12WORKDIR /usr/local/webol
13COPY --from=builder /usr/local/cargo/bin/webol /usr/local/bin/webol
14 16
15EXPOSE 7229 17EXPOSE 7229
16CMD ["webol"] 18ENTRYPOINT ["./webol"]