We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef5b0c3 + f1e5a8e commit 80ef307Copy full SHA for 80ef307
Dockerfile
@@ -0,0 +1,23 @@
1
+FROM ubuntu:24.04
2
+
3
+# Install curl
4
+RUN apt-get update && apt-get install -y \
5
+ curl \
6
+ && rm -rf /var/lib/apt/lists/*
7
8
+# Create non-root user
9
+RUN useradd -m -s /bin/bash helios
10
11
+# Switch to non-root user
12
+USER helios
13
+WORKDIR /home/helios
14
15
+# Set environment variable for helios
16
+ENV PATH="/home/helios/.helios/bin:${PATH}"
17
18
+# Install heliosup first, then use it to install helios
19
+RUN curl -fsSL https://raw.githubusercontent.com/a16z/helios/master/heliosup/install | bash && \
20
+ /bin/bash -c 'heliosup'
21
22
+# Set a default command
23
+CMD ["/bin/bash"]
0 commit comments