Skip to content

Commit

Permalink
ci: adjust dockerfile FROM commands
Browse files Browse the repository at this point in the history
This change hopefully satisfies GitHub's check warnings for
Dockerfiles ("The 'as' keyword should match the case of the
'from' keyword").
  • Loading branch information
lfleischmann committed Nov 6, 2024
1 parent 317aedb commit 2539c04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM node:18.14-alpine as build
FROM --platform=$BUILDPLATFORM node:18.14-alpine AS build
RUN apk add --no-cache libc6-compat
RUN apk update

Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM node:18.14-alpine as build
FROM --platform=$BUILDPLATFORM node:18.14-alpine AS build
RUN apk add --no-cache libc6-compat
RUN apk update

Expand Down
2 changes: 1 addition & 1 deletion quickstart/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the quickstart binary
FROM --platform=$BUILDPLATFORM golang:1.20 as builder
FROM --platform=$BUILDPLATFORM golang:1.20 AS builder

ARG TARGETARCH

Expand Down

0 comments on commit 2539c04

Please sign in to comment.