Skip to content

Commit 5e656df

Browse files
committed
Small Dockerfile & Makefile fixes
1 parent 7c2d3b9 commit 5e656df

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ help: ##@Help Show this help
3333
venv: venv-cleanup venv-install##@Env Init venv and install uv dependencies
3434

3535
venv-cleanup: ##@Env Cleanup venv
36-
@rm -rf .venv || true
37-
python3.12 -m venv .venv
36+
@rm -rf ${VIRTUAL_ENV} || true
37+
python3 -m venv ${VIRTUAL_ENV}
3838
${PIP} install uv
3939

4040
venv-install: ##@Env Install requirements to venv

docker/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ FROM python:${PYTHON_VERSION}-slim AS base
44
WORKDIR /app
55
ENV PYTHONPATH=/app \
66
PATH="/app/.venv/bin:$PATH" \
7-
PYTHONDONTWRITEBYTECODE=1 \
87
PYTHONUNBUFFERED=1
98

109
RUN apt-get update \

0 commit comments

Comments
 (0)