https://github.com/carla-simulator/carla
Raw File
Tip revision: c75ea9395ed249df9297a0877ad08be026b61a34 authored by Axel on 22 June 2021, 15:13:53 UTC
Added speed limit to FActorData.
Tip revision: c75ea93
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