1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# Dockerfile to create a slower debug build of nutcracker with assertions enabled
# for continuous integration checks.
# ARGS: REDIS_VER
# Also see test_in_docker.sh
FROM centos:7
ENV LAST_MODIFIED_DATE 2021-04-09
RUN yum install -y \
https://repo.ius.io/ius-release-el7.rpm \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# socat Allow tests to open log files
# which (used below)
# python-setuptools for pip
RUN yum install -y \
tar git gcc make tcl \
autoconf automake libtool wget \
memcached \
socat \
which \
python36u python36u-pip && \
yum clean all
# Install nosetest dependencies
RUN pip3.6 install nose && \
pip3.6 install 'git+https://github.com/andymccurdy/redis-py.git@3.5.3' && \
pip3.6 install 'git+https://github.com/linsomniac/python-memcached.git@1.58'
# I can't install redis or redis-server in centos:7 (didn't add package), adding to centos 6
# Install redis and redis sentinel, needed for unit tests
# RUN yum install -y redis redis-sentinel
ARG REDIS_VER=3.2.11
RUN wget https://github.com/redis/redis/archive/$REDIS_VER.tar.gz && \
tar zxvf $REDIS_VER.tar.gz && \
pushd redis-$REDIS_VER && \
make install && \
popd && \
rm -r redis-*
# This will build twemproxy with compilation flags for running unit tests, integration tests.
# Annoyingly, this can't add multiple directories at once.
ADD conf /usr/src/twemproxy/conf
ADD contrib /usr/src/twemproxy/contrib
ADD man /usr/src/twemproxy/man
ADD m4 /usr/src/twemproxy/m4
ADD notes /usr/src/twemproxy/notes
ADD scripts /usr/src/twemproxy/scripts
ADD src /usr/src/twemproxy/src
ADD ChangeLog configure.ac Makefile.am LICENSE NOTICE README.md /usr/src/twemproxy/
WORKDIR /usr/src/twemproxy
ADD ci/build-nutcracker.sh /usr/local/bin/build-nutcracker.sh
RUN /usr/local/bin/build-nutcracker.sh
# Add the tests after adding source files, which makes it easy to quickly test changes to unit tests.
ADD tests /usr/src/twemproxy/tests
# Not installing redis utilities, since we're not running those tests.
RUN mkdir tests/_binaries -p
RUN ln -nsf $PWD/src/nutcracker tests/_binaries/nutcracker && \
cp `which redis-server` tests/_binaries/redis-server && \
cp `which redis-server` tests/_binaries/redis-sentinel && \
cp `which memcached` tests/_binaries/memcached && \
cp `which redis-cli` tests/_binaries/redis-cli
WORKDIR /usr/src/twemproxy/tests
# Allow tests to open log files
RUN chmod -R a+w log/
RUN cat /etc/passwd
RUN chown -R daemon:daemon /usr/src/twemproxy
USER daemon
|