Fixing new error in TravisCI builds that happens when installing the Pip package: mysqlclient==1.3.12
This commit is contained in:
parent
21fce27291
commit
fcec765a7c
|
@ -9,8 +9,8 @@ ENV PATH=${GRADLE_HOME}/bin:${PATH}
|
||||||
COPY ./server/website/requirements.txt /
|
COPY ./server/website/requirements.txt /
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y python3.6 python3-pip mysql-client \
|
&& apt-get install -y python3.6 python3-pip libssl-dev \
|
||||||
libmysqlclient-dev python-mysqldb postgresql-client \
|
mysql-client libmysqlclient-dev python-mysqldb postgresql-client \
|
||||||
openjdk-11-jdk checkstyle git unzip wget curl \
|
openjdk-11-jdk checkstyle git unzip wget curl \
|
||||||
&& wget https://services.gradle.org/distributions/${GRADLE_VERSION}-bin.zip \
|
&& wget https://services.gradle.org/distributions/${GRADLE_VERSION}-bin.zip \
|
||||||
&& unzip ${GRADLE_VERSION}-bin.zip -d /opt \
|
&& unzip ${GRADLE_VERSION}-bin.zip -d /opt \
|
||||||
|
|
Loading…
Reference in New Issue