Install curl inside the docker image

This commit is contained in:
xerial 2017-01-19 18:37:44 -08:00
parent ef5f1cb0df
commit 47c05acd8a
2 changed files with 1 additions and 6 deletions

View File

@ -1,10 +1,5 @@
sudo: required
addons:
apt:
packages:
- curl
services:
- docker

View File

@ -1,7 +1,7 @@
FROM centos:5
MAINTAINER Taro L. Saito <leo@xerial.org>
RUN yum -y install make gcc gcc-c++ glibc-devel perl wget bzip2 \
RUN yum -y install make gcc gcc-c++ glibc-devel perl wget bzip2 curl \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /tmp/work \