We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c2d3b9 commit 5e656dfCopy full SHA for 5e656df
Makefile
@@ -33,8 +33,8 @@ help: ##@Help Show this help
33
venv: venv-cleanup venv-install##@Env Init venv and install uv dependencies
34
35
venv-cleanup: ##@Env Cleanup venv
36
- @rm -rf .venv || true
37
- python3.12 -m venv .venv
+ @rm -rf ${VIRTUAL_ENV} || true
+ python3 -m venv ${VIRTUAL_ENV}
38
${PIP} install uv
39
40
venv-install: ##@Env Install requirements to venv
docker/Dockerfile
@@ -4,7 +4,6 @@ FROM python:${PYTHON_VERSION}-slim AS base
4
WORKDIR /app
5
ENV PYTHONPATH=/app \
6
PATH="/app/.venv/bin:$PATH" \
7
- PYTHONDONTWRITEBYTECODE=1 \
8
PYTHONUNBUFFERED=1
9
10
RUN apt-get update \
0 commit comments