All checks were successful
continuous-integration/drone/push Build is passing
10 lines
128 B
Docker
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"]
|