From 1d15f7f82a2cf97a8a7a10b5157dad3e33ba3c41 Mon Sep 17 00:00:00 2001 From: Felix Leder <39925636+FxQnLr@users.noreply.github.com> Date: Mon, 9 Oct 2023 22:47:06 +0200 Subject: Update Dockerfile another fix --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d014c5a..52e7223 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ -FROM --platform=amd64 debian:bullseye-slim +FROM --platform=amd64 debian:12-slim WORKDIR /usr/local/webol +RUN ls -la COPY target/armv7-unknown-linux-gnueabihf/release/webol /usr/local/bin/webol EXPOSE 7229 -CMD ["webol"] \ No newline at end of file +CMD ["webol"] -- cgit v1.2.3 From b0e8aabfb9ea0f4c40a2aa330dd59f07b6c91216 Mon Sep 17 00:00:00 2001 From: Felix Leder <39925636+FxQnLr@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:12:48 +0200 Subject: Update Dockerfile f it --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52e7223..0a7db3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ -FROM --platform=amd64 debian:12-slim +FROM --platform=arm64 debian:12-slim WORKDIR /usr/local/webol -RUN ls -la -COPY target/armv7-unknown-linux-gnueabihf/release/webol /usr/local/bin/webol +COPY ./target/armv7-unknown-linux-gnueabihf/release/webol /usr/local/bin/webol EXPOSE 7229 CMD ["webol"] -- cgit v1.2.3