Skip to content

Commit

Permalink
chore: fix Dockerfile casing warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Aug 13, 2024
1 parent 0e0e152 commit d95ead4
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 node:20 as builder
FROM node:20 AS builder

COPY ./ /build/

Expand All @@ -10,7 +10,7 @@ RUN --mount=type=cache,target=/root/.npm/_cacache/ \
pnpm install --frozen-lockfile && \
pnpm run build

FROM node:20-alpine as production
FROM node:20-alpine AS production

WORKDIR /app
ARG GIT_SHA
Expand Down

0 comments on commit d95ead4

Please sign in to comment.