ublue-forge/setup/Containerfile

11 lines
200 B
Plaintext
Raw Normal View History

2023-05-01 19:17:56 +03:00
# Source Image
FROM docker.io/library/python:alpine3.17
2023-05-06 00:23:16 +03:00
# Install SSH
RUN apk add openssh
# Install ansible and dependencies
2023-05-01 19:17:56 +03:00
WORKDIR /ansible
COPY ./ansible .
RUN pip3 install -r ./requirements.txt