https://github.com/carla-simulator/carla
Raw File
Tip revision: 19cfc02ae99c21d31750577607fb4aa73698202f authored by Roel Algaba Brizuela on 20 May 2021, 12:17:59 UTC
Updated tests and cars
Tip revision: 19cfc02
Carla.Dockerfile
FROM carla-prerequisites:latest

ARG GIT_BRANCH

USER ue4

RUN cd /home/ue4 && \
  if [ -z ${GIT_BRANCH+x} ]; then git clone --depth 1 https://github.com/carla-simulator/carla.git; \
  else git clone --depth 1 --branch $GIT_BRANCH https://github.com/carla-simulator/carla.git; fi && \
  cd /home/ue4/carla && \
  ./Update.sh && \
  make CarlaUE4Editor && \
  make PythonAPI && \
  make build.utils && \
  make package && \
  rm -r /home/ue4/carla/Dist

WORKDIR /home/ue4/carla
back to top