ublue-forge/setup/Containerfile
2023-05-05 21:23:16 +00:00

11 lines
200 B
Docker

# Source Image
FROM docker.io/library/python:alpine3.17
# Install SSH
RUN apk add openssh
# Install ansible and dependencies
WORKDIR /ansible
COPY ./ansible .
RUN pip3 install -r ./requirements.txt