File tree 1 file changed +4
-4
lines changed
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
2
2
ENV PYTHONUNBUFFERED=1 \
3
3
PYTHONDONTWRITEBYTECODE=1 \
4
4
PIP_NO_CACHE_DIR=off \
5
5
PIP_DISABLE_PIP_VERSION_CHECK=on \
6
6
PIP_DEFAULT_TIMEOUT=100 \
7
- POETRY_VERSION=1.8.4 \
7
+ POETRY_VERSION=1.8.5 \
8
8
POETRY_HOME="/opt/poetry" \
9
9
POETRY_VIRTUALENVS_CREATE=false \
10
10
POETRY_NO_INTERACTION=1 \
11
11
PYSETUP_PATH="/opt/pysetup"
12
12
ENV PATH="/root/.cargo/bin:$POETRY_HOME/bin:$PATH"
13
13
WORKDIR $PYSETUP_PATH
14
14
15
- FROM base as builder
15
+ FROM base AS builder
16
16
17
17
# Install build deps
18
18
RUN apt-get update && apt-get install -y curl clang git libssl-dev make pkg-config
@@ -29,7 +29,7 @@ RUN poetry install --only main
29
29
COPY . ./
30
30
RUN poetry install
31
31
32
- FROM base as application
32
+ FROM base AS application
33
33
34
34
ENV CATALOG_PATH=/catalog
35
35
You can’t perform that action at this time.
0 commit comments