Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
|
@@ -12,7 +12,7 @@ ENV PYTHONUNBUFFERED=1 \
|
|
| 12 |
POETRY_NO_INTERACTION=1 \
|
| 13 |
POETRY_HOME="/usr/local" \
|
| 14 |
FORCE_COLOR=1 \
|
| 15 |
-
TERM=xterm-256color
|
| 16 |
POETRY_VIRTUALENVS_CREATE=false
|
| 17 |
|
| 18 |
# Fix python-alpine gcc
|
|
@@ -27,9 +27,6 @@ RUN pip install poetry
|
|
| 27 |
# Clear Poetry cache
|
| 28 |
RUN poetry cache clear --all pypoetry
|
| 29 |
|
| 30 |
-
# Disable virtual environment creation
|
| 31 |
-
RUN poetry config virtualenvs.create false
|
| 32 |
-
|
| 33 |
# Verify config
|
| 34 |
RUN poetry config --list
|
| 35 |
|
|
|
|
| 12 |
POETRY_NO_INTERACTION=1 \
|
| 13 |
POETRY_HOME="/usr/local" \
|
| 14 |
FORCE_COLOR=1 \
|
| 15 |
+
TERM=xterm-256color \
|
| 16 |
POETRY_VIRTUALENVS_CREATE=false
|
| 17 |
|
| 18 |
# Fix python-alpine gcc
|
|
|
|
| 27 |
# Clear Poetry cache
|
| 28 |
RUN poetry cache clear --all pypoetry
|
| 29 |
|
|
|
|
|
|
|
|
|
|
| 30 |
# Verify config
|
| 31 |
RUN poetry config --list
|
| 32 |
|