Skip to content

Commit 9237938

Browse files
committed
#104 Use Python 3.10 in devcontainer
1 parent dd4c1e7 commit 9237938

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FROM python:3.9-slim
1+
FROM python:3.10-slim
22

3+
ENV PATH=$PATH:/root/.local/bin
34
ENV POETRY_VIRTUALENVS_CREATE=false
45

56
RUN apt-get update \
6-
&& apt-get install -y git \
7+
&& apt-get install -y curl git \
78
&& apt-get clean \
89
&& rm -rf /var/lib/apt/lists/* \
9-
&& pip install --no-cache-dir poetry
10+
&& curl -sSL https://install.python-poetry.org | python -

0 commit comments

Comments
 (0)