Skip to content

Commit

Permalink
chore: Uppercase "AS" in "FROM ... AS ..." in Dockerfile
Browse files Browse the repository at this point in the history
Found by @pdmnyberg
  • Loading branch information
kusalananda committed Sep 6, 2024
1 parent 745c7ad commit d88a410
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.3.0-alpine as build
FROM node:20.3.0-alpine AS build

USER node
RUN mkdir /home/node/app
Expand Down
2 changes: 1 addition & 1 deletion production/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23-alpine3.20 as builder
FROM golang:1.23-alpine3.20 AS builder

RUN addgroup -S urdr && getent group urdr >/tmp/group
RUN adduser -S urdr && getent passwd urdr >/tmp/passwd
Expand Down

0 comments on commit d88a410

Please sign in to comment.