Marc Ahlgrim 5473938286 initial commit
Signed-off-by: Marc Ahlgrim <marc@onemarcfifty.com>
2022-08-02 16:35:35 +02:00

23 lines
347 B
Docker

FROM rundeck/rundeck:4.4.0
# minimal rundeck with ansible
# no mariadb
USER root
RUN apt-get -y update && \
apt-get -y install \
apt-transport-https \
python3-pip
RUN pip install --upgrade pip
RUN pip install ansible
USER rundeck
#VOLUME ["/home/rundeck/server/data"]
#EXPOSE 4440
#ENTRYPOINT [ "docker-lib/entry.sh" ]