Skip to content

Instantly share code, notes, and snippets.

@ayush--s
Created September 20, 2020 10:13
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 ayush--s/a2c3f1530f668c790ec8f43e56b514e0 to your computer and use it in GitHub Desktop.
Save ayush--s/a2c3f1530f668c790ec8f43e56b514e0 to your computer and use it in GitHub Desktop.
poetry
FROM ubuntu:focal
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
python3.8 wget python3-distutils python3-venv \
&& rm -fr /var/cache/apt/*
RUN wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py -O get-pip.py \
&& python3.8 get-pip.py \
&& rm get-pip.py
RUN pip3 install poetry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment