ublue-forge/setup/Containerfile
Stephan Lüscher 717998b801
feat: create ssh key for automation tasks
includes refactoring for build process
2023-05-04 15:02:05 +00:00

12 lines
243 B
Docker

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