From b050dabab59a10f0898ea6e2fa0a83b82ff01647 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Sun, 26 Dec 2021 06:26:13 +0200 Subject: Added various stuff - gpg imports now from repo the test key - git is set up for testing - some ports are exposed for ipfs - added screen - added pinentry Known bugs ----------- Major: - ipfs doesn't find interfaces to listen to Minor: - gpg generate thing is not working --- ContainerFile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/ContainerFile b/ContainerFile index f7ea0e1..6f370d2 100644 --- a/ContainerFile +++ b/ContainerFile @@ -1,6 +1,13 @@ FROM fedora:latest -RUN sudo dnf update -y && sudo dnf install wget which git -y +RUN sudo dnf update -y && sudo dnf install wget which git screen pinentry -y COPY . /repo -RUN cd /repo && /repo/install.sh -ENTRYPOINT ["sleep","10000000"] +RUN gpg --import /repo/test.sk +RUN bash -c 'cd /repo && /repo/install.sh' +RUN git config --global user.email "test@test.test" +RUN git config --global user.name "test" +EXPOSE 4001/tcp +EXPOSE 5001/tcp +EXPOSE 8080/tcp +ENTRYPOINT ["tail","-f","/root/.arching-kaos/logs"] + -- cgit v1.2.3