Skip to content

Commit e88eb65

Browse files
authored
clean up a few env variables in dockerfile (#10)
1 parent 7a0fa24 commit e88eb65

File tree

4 files changed

+969
-869
lines changed

4 files changed

+969
-869
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ ENV PIP_NO_CACHE_DIR=off \
1010
POETRY_NO_INTERACTION=1 \
1111
POETRY_VIRTUALENVS_CREATE=false \
1212
POETRY_HOME='/usr/local' \
13-
POETRY_VERSION=1.8.3 \
14-
PYTHON_VERSION=3.12.7
15-
13+
POETRY_VERSION=2.1.1
1614
# Install required tools and dependencies
1715
RUN apt-get update && apt-get install -y \
1816
sudo \
@@ -31,7 +29,7 @@ RUN apt-get update && apt-get install -y \
3129
git \
3230
libsqlite3-dev \
3331
pre-commit \
34-
&& curl -sSL https://install.python-poetry.org | python3 - --version 1.8.3 \
32+
&& curl -sSL https://install.python-poetry.org | python3 - --version $POETRY_VERSION \
3533
&& apt-get clean -y \
3634
&& rm -rf /var/lib/apt/lists/*
3735

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
actions: read
1111
checks: write
1212
env:
13-
pythonVersion: 3.12.7
13+
pythonVersion: 3.12.9
1414
jobs:
1515
Build_Stage_Build:
1616
name: Build

0 commit comments

Comments
 (0)