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 6c7ded4 commit f87d316Copy full SHA for f87d316
Dockerfile
@@ -1,6 +1,9 @@
1
-FROM rundeck:latest
+FROM rundeck/rundeck:latest
2
USER root
3
-RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
4
- unzip awscliv2.zip && \
5
- ./aws/install
+RUN apt-get update \
+ && apt-get -y upgrade \
+ && apt-get -y install unzip curl python3 python-is-python3 groff \
6
+ && curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
7
+ && unzip awscliv2.zip \
8
+ && ./aws/install
9
USER rundeck
0 commit comments