Update integration tests image

This commit is contained in:
alesapin 2018-12-10 12:40:57 +03:00
parent 79a02c030f
commit 0901694b15

View File

@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:18.04
RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes --force-yes \
@ -16,7 +16,9 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes -
module-init-tools \
cgroupfs-mount \
python-pip \
tzdata
tzdata \
libreadline-dev \
libicu-dev
ENV TZ=Europe/Moscow
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
@ -24,7 +26,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN pip install pytest docker-compose==1.22.0 docker dicttoxml kazoo PyMySQL psycopg2
ENV DOCKER_CHANNEL stable
ENV DOCKER_VERSION 18.09.0
ENV DOCKER_VERSION 17.09.1-ce
RUN set -eux; \
\