Skip to content

Remove curl from Dockerfiles #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.alpine-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM alpine:3.7
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN apk add --no-cache bash build-base cmake curl-dev openssl-dev
RUN apk add --no-cache bash build-base cmake openssl-dev

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
2 changes: 1 addition & 1 deletion Dockerfile.debian.9-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM debian:9
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN apt update && apt -y install cmake gcc libcurl4-openssl-dev libssl-dev pkg-config zlib1g-dev
RUN apt update && apt -y install cmake gcc libssl-dev pkg-config zlib1g-dev

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
2 changes: 1 addition & 1 deletion Dockerfile.fedora-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM fedora:26
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN yum -y install cmake gcc libcurl-devel make openssl-devel
RUN yum -y install cmake gcc make openssl-devel

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
2 changes: 1 addition & 1 deletion Dockerfile.linux-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM ubuntu:14.04
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN apt update && apt -y install cmake libcurl4-openssl-dev libssl-dev pkg-config
RUN apt update && apt -y install cmake libssl-dev pkg-config

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
2 changes: 1 addition & 1 deletion Dockerfile.rhel-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM centos:6
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN yum -y install cmake gcc libcurl-devel make openssl-devel
RUN yum -y install cmake gcc make openssl-devel

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu.18.04-x64
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM ubuntu:18.04
WORKDIR /nativebinaries
COPY . /nativebinaries/

RUN apt update && apt -y install cmake libcurl4-openssl-dev libssl-dev pkg-config zlib1g-dev
RUN apt update && apt -y install cmake libssl-dev pkg-config zlib1g-dev

CMD ["/bin/bash", "-c", "./build.libgit2.sh"]