batstat/Dockerfile
2024-02-16 22:23:22 +01:00

6 lines
100 B
Docker

FROM archlinux:latest
RUN pacman --noconfirm -Sy gcc make
COPY . .
RUN make
CMD [ "build/batstat" ]