Skip to content

Instantly share code, notes, and snippets.

@cecilemuller
Last active December 12, 2022 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cecilemuller/25e3bd7f1c4bd8d88472de8f109de7c6 to your computer and use it in GitHub Desktop.
Save cecilemuller/25e3bd7f1c4bd8d88472de8f109de7c6 to your computer and use it in GitHub Desktop.
doctl in Ubuntu Docker
FROM ubuntu:22.04
RUN apt update \
&& apt install -y wget \
&& wget https://github.com/digitalocean/doctl/releases/download/v1.88.0/doctl-1.88.0-linux-amd64.tar.gz -O doctl.tar.gz \
&& tar xf doctl.tar.gz \
&& rm doctl.tar.gz \
&& mv doctl /usr/local/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment