Skip to content

Commit

Permalink
Adjust casing in Containerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Feb 19, 2025
1 parent 00e5e75 commit c295c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-alpine as builder
FROM python:3.13-alpine AS builder

RUN pip install poetry

Expand All @@ -15,7 +15,7 @@ RUN touch README.md
RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR

# The runtime image, used to just run the code provided its virtual environment
FROM python:3.13-alpine as runtime
FROM python:3.13-alpine AS runtime

ENV VIRTUAL_ENV=/app/.venv \
PATH="/app/.venv/bin:$PATH"
Expand Down

0 comments on commit c295c7f

Please sign in to comment.