Skip to content

Commit

Permalink
fixup! Update to Atoti Python API 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex committed Feb 14, 2024
1 parent 2fcc059 commit 135bb16
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# syntax=docker/dockerfile:1.2
FROM python:3.9.12-slim AS builder
FROM python:3.9.18-slim AS builder

RUN --mount=type=cache,target=/root/.cache pip install poetry==1.7.0
RUN poetry config virtualenvs.create false
RUN --mount=type=cache,target=/root/.cache pip install poetry==1.7.1

COPY poetry.lock pyproject.toml ./

RUN --mount=type=cache,target=/root/.cache poetry install --no-root --only main --sync
RUN --mount=type=cache,target=/root/.cache POETRY_VIRTUALENVS_CREATE=false poetry install --no-cache --no-root --only main --sync

FROM python:3.9.12-slim AS runner
FROM python:3.9.18-slim AS runner

ENV ATOTI_HIDE_EULA_MESSAGE=true
ENV PORT=80
Expand Down

0 comments on commit 135bb16

Please sign in to comment.