Skip to content

Commit 6ae96a8

Browse files
committed
fix: Fix inconsistent capitalization in Dockerfile
1 parent 0992ac5 commit 6ae96a8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

templates/ros/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##############
22
# Base image #
33
##############
4-
FROM ros:noetic-robot as base
4+
FROM ros:noetic-robot AS base
55

66
ARG CATKIN_WORKSPACE_DIR="/catkin_ws"
77

@@ -36,7 +36,7 @@ ENV DEBIAN_FRONTEND=dialog
3636
#####################
3737
# Development image #
3838
#####################
39-
FROM base as dev
39+
FROM base AS dev
4040

4141
ARG CATKIN_WORKSPACE_DIR="/catkin_ws"
4242
ARG USERNAME="developer"

templates/ros2/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##############
22
# Base image #
33
##############
4-
FROM ros:humble-ros-base as base
4+
FROM ros:humble-ros-base AS base
55

66
ARG AMENT_WORKSPACE_DIR="/ament_ws"
77

@@ -39,7 +39,7 @@ ENV DEBIAN_FRONTEND=dialog
3939
#####################
4040
# Development image #
4141
#####################
42-
FROM base as dev
42+
FROM base AS dev
4343

4444
ARG AMENT_WORKSPACE_DIR="/ament_ws"
4545
ARG USERNAME="developer"

0 commit comments

Comments
 (0)