We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a feature request to create a Docker image of the tool by including a Dockerfile in the repo.
The following is a Dockerfile based on debian:bullseye-slim which installs the executable and manpage. Total size is 85MB
docker build -t <image> .
docker run --rm <image> webisoget
docker run -it --rm <image> man webisoget
FROM debian:bullseye as builder RUN apt-get update && apt-get install -yq --no-install-recommends libtool autoconf automake gcc \ libssl-dev libcurl4-openssl-dev zlib1g-dev libcrypto++-dev make && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* RUN mkdir /webisoget COPY . /webisoget WORKDIR /webisoget RUN bash ./boot RUN ./configure RUN make && make install FROM debian:bullseye-slim RUN apt-get update && apt-get install -yq --no-install-recommends libcurl4 man && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* COPY --from=builder /usr/local/bin/webisoget /usr/local/bin/webisoget COPY --from=builder /usr/local/share/man/man1/webisoget.1 /usr/local/share/man/man1/webisoget.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a feature request to create a Docker image of the tool by including a Dockerfile in the repo.
The following is a Dockerfile based on debian:bullseye-slim which installs the executable and manpage. Total size is 85MB
docker build -t <image> .
docker run --rm <image> webisoget
docker run -it --rm <image> man webisoget
The text was updated successfully, but these errors were encountered: