Init dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Petit 2024-12-05 14:43:06 +01:00
parent f937fd551e
commit 8e773a914c

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM debian:12-slim
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y make && make install
ENTRYPOINT ["bob"]