mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-05 17:25:46 +03:00
feat: automatically setup forge (#10)
This commit is contained in:
parent
c694947618
commit
bbe78ee922
28 changed files with 1472 additions and 0 deletions
11
setup/Containerfile
Normal file
11
setup/Containerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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"]
|
Loading…
Add table
Add a link
Reference in a new issue