mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-20 13:33:44 +03:00
12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
![]() |
# 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"]
|