aboutsummaryrefslogtreecommitdiff
path: root/podman/ContainerFile.archlinux
blob: ef124b2e46a3a5820779d4a9da35fd528509a3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM archlinux:latest
RUN pacman -Suy --noconfirm && pacman -Syu --noconfirm which git screen pinentry -y 
RUN pacman -Suy --noconfirm wget -y
RUN pacman -Suy --noconfirm jq -y
RUN pacman -Suy --noconfirm nodejs -y
RUN pacman -Suy --noconfirm npm -y
RUN pacman -Suy --noconfirm make -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 "kaos@kaos.kaos"
RUN git config --global user.name "kaos"
RUN git config --global init.defaultBranch master
EXPOSE 4001/tcp
EXPOSE 5001/tcp
EXPOSE 8080/tcp
ENTRYPOINT ["tail","-f","/root/.arching-kaos/logs"]