mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-18 20:43:43 +03:00
11 lines
200 B
Docker
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
|