From 207311ddbe9531f67a5f2d18ee61a9c6b4f737ab Mon Sep 17 00:00:00 2001 From: Gyurix Date: Tue, 10 Sep 2024 13:56:07 +0200 Subject: [PATCH] prepared image to run under arm infra also --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3125f80..700a9bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM alpine:latest RUN apk add --no-cache alpine-sdk rustup \ - && rustup-init -y --target x86_64-unknown-linux-musl --default-toolchain beta --profile minimal \ + && rustup-init -y --default-toolchain beta --profile minimal \ #&& curl https://sh.rustup.rs -sSf | sh -s -- -y --default-host x86_64-unknown-linux-musl --profile minimal \ && source ~/.cargo/env \ - && cargo install --target x86_64-unknown-linux-musl boringtun-cli + && cargo install boringtun-cli FROM alpine:latest