Fix Dockerfile FromAsCasing warnings (#20388)

GitOrigin-RevId: 6d6be3ba17eec695907dde25da2dbe98818fae10
This commit is contained in:
Alf Eaton
2024-09-20 15:03:26 +01:00
committed by Copybot
parent 250acbf33c
commit 2976fd0b44
14 changed files with 34 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
# Dockerfile for git-bridge
FROM maven:3-amazoncorretto-21-debian as base
FROM maven:3-amazoncorretto-21-debian AS base
RUN apt-get update && apt-get install -y make git sqlite3 \
&& rm -rf /var/lib/apt/lists
@@ -10,7 +10,7 @@ RUN chmod +x /opt/envsubst
RUN useradd --create-home node
FROM base as builder
FROM base AS builder
COPY . /app