diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-08-20 15:23:14 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-08-20 15:23:14 +0300 |
commit | b0fe96e841f794055371a2ac301f99e5451198c7 (patch) | |
tree | 5d40eba0a164bd9421dc26e4919ab083a4602919 | |
parent | 0fb64d189f74ca32dad32401d9789efd6257ab59 (diff) | |
download | arching-kaos-tools-b0fe96e841f794055371a2ac301f99e5451198c7.tar.gz arching-kaos-tools-b0fe96e841f794055371a2ac301f99e5451198c7.tar.bz2 arching-kaos-tools-b0fe96e841f794055371a2ac301f99e5451198c7.zip |
No need for importing keys manually, they get created during install
-rw-r--r-- | ContainerFile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ContainerFile b/ContainerFile index 69936ed..7bc4fa6 100644 --- a/ContainerFile +++ b/ContainerFile @@ -1,8 +1,7 @@ FROM fedora:latest RUN sudo dnf update -y && sudo dnf install wget which git screen pinentry -y -COPY . /repo -RUN gpg --import /repo/test.sk -RUN bash -c 'cd /repo && /repo/install.sh' +COPY . /root/arching-kaos-tools +RUN bash -c 'cd /root/arching-kaos-tools && /root/arching-kaos-tools/install.sh' RUN git config --global user.email "test@test.test" RUN git config --global user.name "test" RUN git config --global init.defaultBranch master |