Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.2-slim as builder
FROM python:3.14.0rc1-slim as builder

WORKDIR /app

Expand All @@ -16,7 +16,7 @@ RUN touch README.md

RUN --mount=type=cache,target=$POETRY_CACHE_DIR poetry install --without dev --no-root

FROM python:3.13.2-slim as runtime
FROM python:3.14.0rc1-slim as runtime

EXPOSE 8000
WORKDIR /app
Expand Down