File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.12-slim as base
1+ FROM python:3.12-slim AS base
22ENV PYTHONUNBUFFERED=1 \
33 PYTHONDONTWRITEBYTECODE=1 \
44 PIP_NO_CACHE_DIR=off \
55 PIP_DISABLE_PIP_VERSION_CHECK=on \
66 PIP_DEFAULT_TIMEOUT=100 \
7- POETRY_VERSION=1.8.4 \
7+ POETRY_VERSION=1.8.5 \
88 POETRY_HOME="/opt/poetry" \
99 POETRY_VIRTUALENVS_CREATE=false \
1010 POETRY_NO_INTERACTION=1 \
1111 PYSETUP_PATH="/opt/pysetup"
1212ENV PATH="/root/.cargo/bin:$POETRY_HOME/bin:$PATH"
1313WORKDIR $PYSETUP_PATH
1414
15- FROM base as builder
15+ FROM base AS builder
1616
1717# Install build deps
1818RUN apt-get update && apt-get install -y curl clang git libssl-dev make pkg-config
@@ -29,7 +29,7 @@ RUN poetry install --only main
2929COPY . ./
3030RUN poetry install
3131
32- FROM base as application
32+ FROM base AS application
3333
3434ENV CATALOG_PATH=/catalog
3535
You can’t perform that action at this time.
0 commit comments