bob/Dockerfile
simonpetit f2059964dc
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
adding git to the image
2025-12-10 17:51:35 +00:00

10 lines
132 B
Docker

FROM debian:12-slim
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y make git && make install
ENTRYPOINT ["bob"]