You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
365 B
Docker

FROM debian:sid
RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install html2text curl
RUN curl --location "https://golang.org/dl/go1.18.linux-amd64.tar.gz" | tar -xzf - -C /usr/local/
ENV PATH="/usr/local/go/bin:/usr/local/gopkg/bin:${PATH}"
RUN GOPATH=/usr/local/gopkg go install github.com/ericchiang/pup@latest
RUN rm -rvf /usr/local/go