Skip to content

Commit

Permalink
Merge pull request #358 from kiwigrid/fix-FromAsCasing-in-Dockerfile
Browse files Browse the repository at this point in the history
#none fixing 'as' and 'FROM' keywords' casing
  • Loading branch information
ChristianGeie authored Sep 16, 2024
2 parents a2a397a + e941a65 commit 18e0ed8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:alpine3.20 as base
FROM python:alpine3.20 AS base

FROM base as builder
FROM base AS builder
WORKDIR /app
RUN python -m venv .venv && .venv/bin/pip install --no-cache-dir -U pip setuptools
COPY src/ /app/
Expand Down

0 comments on commit 18e0ed8

Please sign in to comment.