Skip to content

Commit

Permalink
Merge pull request #1528 from tier4/fix/use-capital-as
Browse files Browse the repository at this point in the history
chore: use `AS` instead of `as` in Dockerfiles
  • Loading branch information
HansRobo authored Feb 17, 2025
2 parents 2a94cd8 + 446ab97 commit 1f053f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ROS_DISTRO="humble"
FROM ros:${ROS_DISTRO} as build-stage
FROM ros:${ROS_DISTRO} AS build-stage
SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NOWARNINGS=yes
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG ROS_DISTRO="humble"
# cspell: ignore impactaky deno BUILDPLATFORM TARGETARCH

FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH}-host:2.1.0 AS mimic-host
FROM ros:${ROS_DISTRO} as build-stage
FROM ros:${ROS_DISTRO} AS build-stage

SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.traffic_simulator
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ROS_DISTRO="humble"
FROM ros:${ROS_DISTRO} as build-stage
FROM ros:${ROS_DISTRO} AS build-stage
SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NOWARNINGS=yes
Expand Down

0 comments on commit 1f053f6

Please sign in to comment.