mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-19 08:05:45 +03:00
feat: create ssh key for automation tasks
includes refactoring for build process
This commit is contained in:
parent
fe6e5d59f3
commit
717998b801
5 changed files with 50 additions and 17 deletions
|
@ -1,11 +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
|
||||
# Install ansible setup project
|
||||
WORKDIR /ansible
|
||||
CMD ["./startup.sh"]
|
||||
COPY ./ansible .
|
||||
RUN pip3 install -r ./requirements.txt
|
||||
RUN chmod +x ./startup.sh
|
||||
|
||||
# Container start command
|
||||
CMD ["/ansible/startup.sh"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue