mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-09 14:34:53 +03:00
Fix Python (docker) Docker image version not being recognized after adding registry to image names
This commit is contained in:
parent
f1da6ba5f5
commit
e582e7103d
|
@ -2,7 +2,7 @@
|
||||||
FROM docker.io/python:3.11.8-slim-bookworm as python
|
FROM docker.io/python:3.11.8-slim-bookworm as python
|
||||||
|
|
||||||
# Python build stage
|
# Python build stage
|
||||||
FROM docker.io/python as python-build-stage
|
FROM python as python-build-stage
|
||||||
|
|
||||||
ARG BUILD_ENVIRONMENT=local
|
ARG BUILD_ENVIRONMENT=local
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ RUN pip wheel --wheel-dir /usr/src/app/wheels \
|
||||||
|
|
||||||
|
|
||||||
# Python 'run' stage
|
# Python 'run' stage
|
||||||
FROM docker.io/python as python-run-stage
|
FROM python as python-run-stage
|
||||||
|
|
||||||
ARG BUILD_ENVIRONMENT=local
|
ARG BUILD_ENVIRONMENT=local
|
||||||
ARG APP_HOME=/app
|
ARG APP_HOME=/app
|
||||||
|
|
Loading…
Reference in New Issue
Block a user