Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Signed-off-by: Oguz Ozturk <[email protected]>
  • Loading branch information
oguzkaganozt committed Mar 15, 2024
1 parent 4032c56 commit 1177b61
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker/autoware-openadk/docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group "default" {
targets = ["base", "planning-control", "visualizer", "simulator"]
targets = ["base", "planning-control", "visualizer"]
}

// For docker/metadata-action
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions docker/autoware-openadk/services/planning-control/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG PLATFORM
FROM ghcr.io/autowarefoundation/autoware-openadk:latest-base-${PLATFORM} as planning-control
FROM ghcr.io/autowarefoundation/autoware-openadk:latest-base as planning-control
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ARG PLATFORM
ARG ROS_DISTRO

# Copy install folder from prebuilt
COPY --from=ghcr.io/autowarefoundation/autoware:latest-prebuilt-${PLATFORM} /autoware/install/ /autoware/install/
COPY --from=ghcr.io/autowarefoundation/autoware:latest-prebuilt /autoware/install/ /autoware/install/
COPY autoware.repos /autoware/

# Dependencies
Expand Down
4 changes: 2 additions & 2 deletions docker/autoware-openadk/services/simulator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PLATFORM
FROM ghcr.io/autowarefoundation/autoware-openadk:latest-base-${PLATFORM} as simulator-base
FROM ghcr.io/autowarefoundation/autoware-openadk:latest-base as simulator-base
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ARG PLATFORM
ARG ROS_DISTRO
Expand Down Expand Up @@ -39,7 +39,7 @@ RUN source /opt/ros/"$ROS_DISTRO"/setup.bash \
/usr/lib/jvm \
/usr/lib/llvm*

FROM ghcr.io/autowarefoundation/autoware-openadk:base-${ROS_DISTRO}-${PLATFORM} as simulator
FROM ghcr.io/autowarefoundation/autoware-openadk:base-${ROS_DISTRO} as simulator
ARG PLATFORM
ARG ROS_DISTRO

Expand Down
4 changes: 2 additions & 2 deletions docker/autoware-openadk/services/visualizer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG PLATFORM
FROM ghcr.io/autowarefoundation/autoware-openadk:latest-base-${PLATFORM} as visualizer
FROM ghcr.io/autowarefoundation/autoware-openadk:latest-base as visualizer
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ARG PLATFORM
ARG ROS_DISTRO

# Copy install folder from prebuilt
COPY --from=ghcr.io/autowarefoundation/autoware:latest-prebuilt-${PLATFORM} /autoware/install/ /autoware/install/
COPY --from=ghcr.io/autowarefoundation/autoware:latest-prebuilt /autoware/install/ /autoware/install/
COPY autoware.repos /autoware/

# Dependencies
Expand Down

0 comments on commit 1177b61

Please sign in to comment.