Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MishkaMN committed Nov 27, 2024
1 parent 0a5035e commit 6a7d4b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
# /////////////////////////////////////////////////////////////////////////////
ARG DOCKER_ORG="usdotfhwastoldev"
ARG DOCKER_TAG="develop"
FROM 5f061b925f05 as base-image
FROM ${DOCKER_ORG}/autoware.ai:${DOCKER_TAG} as base-image

FROM 5f061b925f05 AS source-code
FROM base-image AS source-code

RUN mkdir ~/src
COPY --chown=carma . /home/carma/src/carma-platform/
Expand All @@ -48,7 +48,7 @@ RUN ~/src/carma-platform/docker/checkout.bash -b ${GIT_BRANCH}
# Stage 2 - Build and install the software
# /////////////////////////////////////////////////////////////////////////////

FROM 5f061b925f05 AS install
FROM base-image AS install
ARG PACKAGES=""
ENV PACKAGES=${PACKAGES}

Expand All @@ -63,7 +63,7 @@ RUN ~/carma_ws/src/carma-platform/docker/install.sh
# /////////////////////////////////////////////////////////////////////////////


FROM 5f061b925f05
FROM base-image

ARG BUILD_DATE="NULL"
ARG VCS_REF="NULL"
Expand Down

0 comments on commit 6a7d4b5

Please sign in to comment.