aboutsummaryrefslogtreecommitdiff
path: root/ContainerFile
blob: 7bc4fa6e4235892666f4138ed9fdc41f8399e9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM fedora:latest
RUN sudo dnf update -y && sudo dnf install wget which git screen pinentry -y 
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
EXPOSE 4001/tcp
EXPOSE 5001/tcp
EXPOSE 8080/tcp
ENTRYPOINT ["tail","-f","/root/.arching-kaos/logs"]