Skip to content

Commit df05e51

Browse files
authored
Fix from/as casing (#78)
Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com>
1 parent 57b41de commit df05e51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# https://github.com/osrf/docker_images/blob/27cc0b68263bbbb10bb58dd814efc0a6b0a01ec7/ros/humble/ubuntu/jammy/ros-core/Dockerfile
2-
FROM ros:humble-ros-core-jammy as repo-deps
2+
FROM ros:humble-ros-core-jammy AS repo-deps
33
# This layer installs basic tools and the direct dependencies of terrain-navigation.
44

55
SHELL ["/bin/bash", "-c"]
@@ -29,7 +29,7 @@ RUN apt-get update \
2929
&& rm -rf /var/lib/apt/lists/*
3030

3131

32-
FROM repo-deps as all-deps
32+
FROM repo-deps AS all-deps
3333
# This layer installs dependencies of the other source packages.
3434

3535
COPY terrain-navigation.repos src/ethz-asl/terrain-navigation/terrain-navigation.repos
@@ -44,7 +44,7 @@ RUN apt-get update \
4444
&& rosdep install --from-paths src --ignore-src -r -y \
4545
&& rm -rf /var/lib/apt/lists/*
4646

47-
FROM all-deps as build
47+
FROM all-deps AS build
4848

4949
WORKDIR /root/ros2_ws/src/ethz-asl/terrain-navigation
5050
COPY . .

0 commit comments

Comments
 (0)