diff options
author | terminaldweller <devi@terminaldweller.com> | 2025-08-04 23:51:06 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2025-08-04 23:51:06 +0000 |
commit | 4e04fa499654830b23715f9acc7c780a8fb4610a (patch) | |
tree | 8470559b6d98148eb1fc37c72a680e0062a58913 /helios | |
parent | updating the dockerfiles (diff) | |
download | hived-4e04fa499654830b23715f9acc7c780a8fb4610a.tar.gz hived-4e04fa499654830b23715f9acc7c780a8fb4610a.zip |
added apikeys
Diffstat (limited to '')
-rw-r--r-- | helios/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
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" |