batstat/Dockerfile

9 lines
171 B
Docker
Raw Permalink Normal View History

2024-02-16 22:23:22 +01:00
FROM archlinux:latest
RUN pacman --noconfirm -Sy gcc make
COPY . .
RUN make
RUN pacman --noconfirm -Rnsu gcc make
RUN useradd batstat
USER batstat
2024-02-16 22:23:22 +01:00
CMD [ "build/batstat" ]