dip/Dockerfile

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