bob/Dockerfile
Simon Petit 8e773a914c
All checks were successful
continuous-integration/drone/push Build is passing
Init dockerfile
2024-12-05 14:43:06 +01:00

10 lines
128 B
Docker

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