47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM debian:buster-slim as builder
 | |
| ARG DOCKER_TAG
 | |
| RUN mkdir -p /src  && mkdir -p /opt
 | |
| COPY . /src
 | |
| WORKDIR /src
 | |
| 
 | |
| RUN NPROC=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) && \
 | |
|     apt-get update && \
 | |
|     apt-get -y --no-install-recommends install cmake make git gcc g++ libbz2-dev libstxxl-dev libstxxl1v5 libxml2-dev \
 | |
|     libzip-dev libboost-all-dev lua5.2 liblua5.2-dev libtbb-dev -o APT::Install-Suggests=0 -o APT::Install-Recommends=0 && \
 | |
|     NPROC=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) && \
 | |
|     echo "Building OSRM ${DOCKER_TAG}" && \
 | |
|     git show --format="%H" | head -n1 > /opt/OSRM_GITSHA && \
 | |
|     echo "Building OSRM gitsha $(cat /opt/OSRM_GITSHA)" && \
 | |
|     mkdir -p build && \
 | |
|     cd build && \
 | |
|     BUILD_TYPE="Release" && \
 | |
|     ENABLE_ASSERTIONS="Off" && \
 | |
|     BUILD_TOOLS="Off" && \
 | |
|     case ${DOCKER_TAG} in *"-debug"*) BUILD_TYPE="Debug";; esac && \
 | |
|     case ${DOCKER_TAG} in *"-assertions"*) BUILD_TYPE="RelWithDebInfo" && ENABLE_ASSERTIONS="On" && BUILD_TOOLS="On";; esac && \
 | |
|     echo "Building ${BUILD_TYPE} with ENABLE_ASSERTIONS=${ENABLE_ASSERTIONS} BUILD_TOOLS=${BUILD_TOOLS}" && \
 | |
|     cmake .. -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DENABLE_ASSERTIONS=${ENABLE_ASSERTIONS} -DBUILD_TOOLS=${BUILD_TOOLS} -DENABLE_LTO=On && \
 | |
|     make -j${NPROC} install && \
 | |
|     cd ../profiles && \
 | |
|     cp -r * /opt && \
 | |
|     \
 | |
|     strip /usr/local/bin/* && \
 | |
|     rm -rf /src /usr/local/lib/libosrm*
 | |
| 
 | |
| 
 | |
| # Multistage build to reduce image size - https://docs.docker.com/engine/userguide/eng-image/multistage-build/#use-multi-stage-builds
 | |
| # Only the content below ends up in the image, this helps remove /src from the image (which is large)
 | |
| FROM debian:buster-slim as runstage
 | |
| RUN mkdir -p /src  && mkdir -p /opt
 | |
| RUN apt-get update && \
 | |
| apt-get install -y --no-install-recommends libboost-program-options1.62.0 libboost-regex1.62.0 \
 | |
| libboost-date-time1.62.0 libboost-chrono1.62.0 libboost-filesystem1.62.0 \
 | |
| libboost-iostreams1.62.0 libboost-thread1.62.0 expat liblua5.2-0 libtbb2 &&\
 | |
| rm -rf /var/lib/apt/lists/*
 | |
| COPY --from=builder /usr/local /usr/local
 | |
| COPY --from=builder /opt /opt
 | |
| RUN chmod 0644 -R /opt
 | |
| WORKDIR /opt
 | |
| 
 | |
| EXPOSE 5000
 |