Skip to content

Commit

Permalink
fix: fix warnings in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
obycode committed Sep 18, 2024
1 parent 9c3b9eb commit 3eed7ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.e2e
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM rust:bookworm as builder
FROM rust:bookworm AS builder

# A commit hash, tag, or branch
ARG GIT_COMMIT=d0f5712332619b3140badc2d25856975d2747004
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.stacker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-bookworm as builder
FROM node:20-bookworm AS builder

RUN apt-get update && apt-get install -y curl gettext-base jq

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.stacks-api
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-bookworm as builder
FROM node:20-bookworm AS builder

ARG GIT_COMMIT
RUN test -n "$GIT_COMMIT" || (echo "GIT_COMMIT not set" && false)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.stacks-node
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:bookworm as builder
FROM rust:bookworm AS builder

# TODO: is there a built-in required arg syntax?
ARG GIT_COMMIT
Expand Down

0 comments on commit 3eed7ef

Please sign in to comment.