Skip to content

Commit

Permalink
style: fix fromascasing warning in dockerfile (#171)
Browse files Browse the repository at this point in the history
Fixes #170
  • Loading branch information
afuetterer authored Jul 9, 2024
1 parent fa7edc9 commit 2e5469d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# base
# ----------------------------
FROM python:3.12.4-slim@sha256:da2d7af143dab7cd5b0d5a5c9545fe14e67fc24c394fcf1cf15e8ea16cbd8637 as base
FROM python:3.12.4-slim@sha256:da2d7af143dab7cd5b0d5a5c9545fe14e67fc24c394fcf1cf15e8ea16cbd8637 AS base

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand All @@ -17,7 +17,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \

# build stage
# ----------------------------
FROM base as build
FROM base AS build

ENV BUILD_VERSION=1.2.1

Expand All @@ -33,7 +33,7 @@ RUN python -m build --installer=uv --wheel

# runtime stage
# ----------------------------
FROM base as runtime
FROM base AS runtime

ARG VERSION

Expand Down

0 comments on commit 2e5469d

Please sign in to comment.