-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
FROM mcr.microsoft.com/devcontainers/base:jammy | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG USER=vscode | ||
|
||
RUN DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get update \ | ||
&& apt-get install -y build-essential --no-install-recommends make \ | ||
ca-certificates \ | ||
git \ | ||
libssl-dev \ | ||
zlib1g-dev \ | ||
libbz2-dev \ | ||
libreadline-dev \ | ||
libsqlite3-dev \ | ||
wget \ | ||
curl \ | ||
llvm \ | ||
libncurses5-dev \ | ||
xz-utils \ | ||
tk-dev \ | ||
libxml2-dev \ | ||
libxmlsec1-dev \ | ||
libffi-dev \ | ||
liblzma-dev | ||
|
||
# Python and poetry installation | ||
USER $USER | ||
ARG HOME="/home/$USER" | ||
ARG PYTHON_VERSION=3.10 | ||
|
||
ENV PYENV_ROOT="${HOME}/.pyenv" | ||
ENV PATH="${PYENV_ROOT}/shims:${PYENV_ROOT}/bin:${HOME}/.local/bin:$PATH" | ||
|
||
RUN echo "done 0" \ | ||
&& curl https://pyenv.run | bash \ | ||
&& echo "done 1" \ | ||
&& pyenv install ${PYTHON_VERSION} \ | ||
&& echo "done 2" \ | ||
&& pyenv global ${PYTHON_VERSION} \ | ||
&& echo "done 3" \ | ||
&& curl -sSL https://install.python-poetry.org | python3 - \ | ||
&& poetry config virtualenvs.in-project true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "poetry3-poetry-pyenv", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.10.14 | ||
3.10.14 |