From 4e04fa499654830b23715f9acc7c780a8fb4610a Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 4 Aug 2025 19:51:06 -0400 Subject: added apikeys --- helios/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 helios/Dockerfile (limited to 'helios') diff --git a/helios/Dockerfile b/helios/Dockerfile new file mode 100644 index 0000000..2f04413 --- /dev/null +++ b/helios/Dockerfile @@ -0,0 +1,15 @@ +FROM debian:bookworm-slim AS builder +RUN apt-get update && \ + apt-get install -y curl bash perl6-readline && \ + curl https://raw.githubusercontent.com/a16z/helios/master/heliosup/install | bash && \ + root/.helios/bin/heliosup install + +FROM debian:bookworm-slim +RUN apt-get update && \ + apt-get install -y libc6 +ENV HOME=/home/helios +RUN set -eux; \ + adduser -u 1001 --home $HOME helios +COPY --from=builder /root/.helios/bin/helios /usr/local/bin/helios +COPY --from=builder /root/.helios/bin/heliosup /usr/local/bin/heliosup +RUN chown -R helios:helios "$HOME" -- cgit v1.2.3