dip/Dockerfile
Paul Lecuq eb7ea55016
All checks were successful
continuous-integration/drone/push Build is passing
updated Dockerfile
2023-07-08 09:48:04 +02:00

10 lines
159 B
Docker

FROM debian:bookworm-slim
ADD dip /dip
RUN apt update -y && apt install -y ca-certificates && apt clean
ENTRYPOINT ["/dip","-port","8989"]
EXPOSE 8989/tcp