We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca1ce9 commit ca9155cCopy full SHA for ca9155c
Dockerfile
@@ -35,7 +35,7 @@ RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR
35
# Alpine doesn't support playwright
36
FROM python:3.13.7-slim AS development
37
38
-ENV UID=1000
+ARG UID=1000
39
ENV USER=app
40
ENV APP_DIR=/app
41
RUN addgroup --gid $UID --system ${USER} \
makefiles/dev.mk
@@ -19,7 +19,7 @@ dev-logs:
19
$(DOCKER_COMPOSE_CMD) logs -f
20
21
dev-shell:
22
- $(DOCKER_COMPOSE_CMD) run web bash
+ $(DOCKER_COMPOSE_CMD) run --rm web bash
23
24
dev-migrate:
25
$(DOCKER_COMPOSE_CMD) run --rm web python manage.py migrate
0 commit comments