Skip to content

Commit f87d316

Browse files
committed
Improve example Dockerfile
1 parent 6c7ded4 commit f87d316

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
FROM rundeck:latest
1+
FROM rundeck/rundeck:latest
22
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
3+
RUN apt-get update \
4+
&& apt-get -y upgrade \
5+
&& 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
69
USER rundeck

0 commit comments

Comments
 (0)