ublue-forge/setup/Containerfile

12 lines
249 B
Plaintext
Raw Normal View History

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