ublue-forge/setup/Containerfile

12 lines
243 B
Plaintext
Raw Normal View History

2023-05-01 19:17:56 +03:00
# Source Image
FROM docker.io/library/python:alpine3.17
# Install ansible setup project
2023-05-01 19:17:56 +03:00
WORKDIR /ansible
COPY ./ansible .
RUN pip3 install -r ./requirements.txt
RUN chmod +x ./startup.sh
# Container start command
CMD ["/ansible/startup.sh"]