dip/Dockerfile
Paul Lecuq b06ab1c801
All checks were successful
continuous-integration/drone/push Build is passing
added docker related files/scripts
2022-11-10 14:33:10 +01:00

10 lines
159 B
Docker

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