Skip to content

Commit 17fd332

Browse files
committed
Update dockerfile
1 parent 0f262b6 commit 17fd332

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
FROM python:3.12-slim as base
1+
FROM python:3.12-slim AS base
22
ENV 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"
1212
ENV PATH="/root/.cargo/bin:$POETRY_HOME/bin:$PATH"
1313
WORKDIR $PYSETUP_PATH
1414

15-
FROM base as builder
15+
FROM base AS builder
1616

1717
# Install build deps
1818
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
2929
COPY . ./
3030
RUN poetry install
3131

32-
FROM base as application
32+
FROM base AS application
3333

3434
ENV CATALOG_PATH=/catalog
3535

0 commit comments

Comments
 (0)