manually building curl, cause we cant use the latest version...

This commit is contained in:
Mendel Greenberg 2019-03-03 22:41:23 -05:00
parent 252f191fb3
commit 0e7a5992ea
No known key found for this signature in database
GPG key ID: B26A7D2DF7DC6EF7
2 changed files with 14 additions and 5 deletions

View file

@ -1,17 +1,26 @@
dist: xenial
env:
- DOCKER_COMPOSE_VERSION: 1.23.1
addons:
apt:
packages:
- curl
env:
- DOCKER_COMPOSE_VERSION: 1.23.1
- build-essential
- nghttp2
- libnghttp2-dev
- libssl-dev
services:
- docker
before_install:
- wget https://curl.haxx.se/download/curl-7.63.0.tar.gz && tar xzf curl-7.63.0.tar.gz
- cd curl-7.63.0
- sudo apt-get -y remove curl
- ./configure --with-nghttp2 --with-ssl
- make && sudo make install
- sudo ldconfig && cd ..
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update

View file

@ -7,7 +7,7 @@ LABEL author=frappé
ENV LANG C.UTF-8
# Install all neccesary packages
RUN apt-get update && apt-get install -y --no-install-recommends build-essential cron curl git iputils-ping libffi-dev \
RUN apt-get update && apt-get install -y --no-install-suggests --no-install-recommends build-essential cron curl git iputils-ping libffi-dev \
liblcms2-dev libldap2-dev libmariadbclient-dev libsasl2-dev libssl-dev libtiff5-dev libwebp-dev mariadb-client \
python-dev python-pip python-setuptools python-tk redis-tools rlwrap software-properties-common sudo tk8.6-dev \
vim xfonts-75dpi xfonts-base wget wkhtmltopdf \