fix casing
This commit is contained in:
parent
d33028409f
commit
e5d383f068
2 changed files with 3 additions and 6 deletions
|
@ -8,9 +8,6 @@ stages:
|
||||||
default:
|
default:
|
||||||
image: python:3.12-slim
|
image: python:3.12-slim
|
||||||
|
|
||||||
#pre-commit:
|
|
||||||
# stage: linting
|
|
||||||
|
|
||||||
build_image:
|
build_image:
|
||||||
stage: build
|
stage: build
|
||||||
image: docker
|
image: docker
|
||||||
|
|
|
@ -11,7 +11,7 @@ ENV PYTHONUNBUFFERED=1 \
|
||||||
|
|
||||||
RUN adduser --disabled-password --gecos "" django
|
RUN adduser --disabled-password --gecos "" django
|
||||||
|
|
||||||
FROM base as poetry
|
FROM base AS poetry
|
||||||
|
|
||||||
ARG POETRY_VERSION=1.8.3
|
ARG POETRY_VERSION=1.8.3
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ RUN : \
|
||||||
|
|
||||||
ENV PATH="${VENV}/bin:${PATH}"
|
ENV PATH="${VENV}/bin:${PATH}"
|
||||||
|
|
||||||
FROM poetry as deps
|
FROM poetry AS deps
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ RUN chmod +x /usr/local/tmp-bin/* \
|
||||||
|
|
||||||
ENTRYPOINT ["entrypoint.sh"]
|
ENTRYPOINT ["entrypoint.sh"]
|
||||||
|
|
||||||
FROM deps as production
|
FROM deps AS production
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
Reference in a new issue