feat: Added Dockerfile

This commit is contained in:
datalore 2024-02-16 22:23:22 +01:00
parent 7fa17e4d91
commit 4a825d83c7

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM archlinux:latest
RUN pacman --noconfirm -Sy gcc make
COPY . .
RUN make
CMD [ "build/batstat" ]