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.
1 parent 0a614b6 commit cbb57b6Copy full SHA for cbb57b6
docker/Dockerfile
@@ -3,7 +3,10 @@ ARG SOLANA_VERSION
3
FROM solanalabs/solana:v${SOLANA_VERSION}
4
5
RUN apt-get update
6
-RUN apt-get install -y cmake curl g++ git libzstd1 libzstd-dev zlib1g zlib1g-dev
+RUN apt-get install -y cmake curl g++ git libzstd1 libzstd-dev sudo zlib1g zlib1g-dev
7
+
8
+# Grant sudo access to pyth user
9
+RUN echo "pyth ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
10
11
RUN useradd -m pyth
12
USER pyth
0 commit comments