summaryrefslogtreecommitdiff
path: root/Dockerfile.arm.build
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.arm.build')
-rw-r--r--Dockerfile.arm.build16
1 files changed, 16 insertions, 0 deletions
diff --git a/Dockerfile.arm.build b/Dockerfile.arm.build
new file mode 100644
index 0000000..1845afe
--- /dev/null
+++ b/Dockerfile.arm.build
@@ -0,0 +1,16 @@
1FROM rust:1.73 as builder
2WORKDIR /usr/src/webol
3COPY . .
4#RUN rustup target add armv7-unknown-linux-gnueabihf
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
9#FROM --platform=arm64 debian:bookworm-slim
10FROM debian:bookworm-slim
11RUN apt update && apt install -y libc6 && rm -rf /var/lib/apt/lists/*
12WORKDIR /usr/local/webol
13COPY --from=builder /usr/local/cargo/bin/webol /usr/local/bin/webol
14
15EXPOSE 7229
16CMD ["webol"]