test2 / Dockerfile
Takafumi-Hori
Initial commit
e338d50 unverified
raw
history blame
334 Bytes
FROM python:3.10
ENV POETRY_HOME=/opt/poetry
RUN apt update -qq && \
apt install -y build-essential \
git \
curl \
wget \
vim
RUN curl -sSL https://install.python-poetry.org | python && \
cd /usr/local/bin && \
ln -s /opt/poetry/bin/poetry && \
poetry config virtualenvs.create false
WORKDIR /root/