mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 09:16:47 +00:00
FIXES: #2527 * define custom docker image for travis-linux builds based on package build image * add macos builds * add windows builds (currently allowed to fail) * improve build and shell scripts as required for the CI envs * add asio timer latency workaround * omit several manual tests from TravisCI which cause memory exhaustion
35 lines
990 B
Docker
35 lines
990 B
Docker
ARG DIST_TAG=16.04
|
|
FROM ubuntu:$DIST_TAG
|
|
ARG GIT_COMMIT=unknown
|
|
ARG CI_USE=false
|
|
LABEL git-commit=$GIT_COMMIT
|
|
|
|
# install/setup prerequisites:
|
|
COPY ubuntu-builder/ubuntu_setup.sh /tmp/
|
|
COPY shared/build_deps.sh /tmp/
|
|
COPY shared/install_cmake.sh /tmp/
|
|
COPY shared/install_boost.sh /tmp/
|
|
RUN chmod +x /tmp/ubuntu_setup.sh && \
|
|
chmod +x /tmp/build_deps.sh && \
|
|
chmod +x /tmp/install_boost.sh && \
|
|
chmod +x /tmp/install_cmake.sh
|
|
RUN /tmp/ubuntu_setup.sh
|
|
RUN /tmp/install_cmake.sh
|
|
ENV PATH="/opt/local/cmake/bin:$PATH"
|
|
RUN /tmp/build_deps.sh
|
|
ENV PLANTUML_JAR="/opt/plantuml/plantuml.jar"
|
|
ENV BOOST_ROOT="/opt/local/boost/_INSTALLED_"
|
|
ENV OPENSSL_ROOT="/opt/local/openssl"
|
|
|
|
# prep files for package building
|
|
RUN mkdir -m 777 -p /opt/rippled_bld/pkg
|
|
WORKDIR /opt/rippled_bld/pkg
|
|
|
|
COPY packaging/dpkg/debian /opt/rippled_bld/pkg/debian/
|
|
COPY shared/update_sources.sh ./
|
|
COPY shared/rippled.service /opt/rippled_bld/pkg/debian/
|
|
|
|
COPY packaging/dpkg/build_dpkg.sh ./
|
|
CMD ./build_dpkg.sh
|
|
|