Skip to content

Commit f51c7c9

Browse files
Fix Dockerfile format
1 parent 60bb6b6 commit f51c7c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ RUN /usr/local/bin/python3.12 -m venv ${VIRTUAL_ENV_PATH} --copies && \
9393
which python && \
9494
# Ensure pip is up to date in virtual environment
9595
python -m pip install --upgrade pip setuptools wheel && \
96-
pip --version# Configure shell environment with optimizations
96+
pip --version
97+
98+
# Configure shell environment with optimizations
9799
RUN echo "# Virtual environment auto-activation" >> ~/.bashrc && \
98100
echo "export VIRTUAL_ENV=${VIRTUAL_ENV_PATH}" >> ~/.bashrc && \
99101
echo "export PATH=\"\${VIRTUAL_ENV}/bin:\$PATH\"" >> ~/.bashrc && \

0 commit comments

Comments
 (0)