Skip to content

Commit

Permalink
Dockerfile: Fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
paullouisageneau committed Oct 23, 2024
1 parent e0f7464 commit bb62bbd
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,4 +1,4 @@
FROM alpine:3.20 as builder
FROM alpine:3.20 AS builder

RUN apk update --no-cache; \
apk add --no-cache cmake make gcc musl-dev;
Expand All @@ -10,7 +10,7 @@ RUN cmake -B build -DCMAKE_BUILD_TYPE=Release; \
cd build; \
make -j2

FROM alpine:3.20 as app
FROM alpine:3.20 AS app

RUN apk update --no-cache; \
apk add --no-cache musl;
Expand Down

0 comments on commit bb62bbd

Please sign in to comment.