Skip to content

Commit

Permalink
🚀 Bump glibc version to 2.26
Browse files Browse the repository at this point in the history
  • Loading branch information
sgerrand committed Oct 10, 2017
1 parent 76340a5 commit 91892d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu-debootstrap:14.04
MAINTAINER Sasha Gerrand <[email protected]>
ENV PREFIX_DIR /usr/glibc-compat
ENV GLIBC_VERSION 2.25
ENV GLIBC_VERSION 2.26
RUN apt-get -q update \
&& apt-get -qy install build-essential wget openssl gawk
COPY configparams /glibc-build/configparams
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ A glibc binary package builder in Docker. Produces a glibc binary package that c

## Usage

Build a glibc package based on version 2.25 with a prefix of `/usr/glibc-compat`:
Build a glibc package based on version 2.26 with a prefix of `/usr/glibc-compat`:

```
docker run --rm -e STDOUT=1 sgerrand/glibc-builder 2.25 /usr/glibc-compat > glibc-bin.tar.gz
docker run --rm -e STDOUT=1 sgerrand/glibc-builder 2.26 /usr/glibc-compat > glibc-bin.tar.gz
```

You can also keep the container around and copy out the resulting file:

```
docker run --name glibc-binary sgerrand/glibc-builder 2.25 /usr/glibc-compat
docker cp glibc-binary:/glibc-bin-2.25.tar.gz ./
docker run --name glibc-binary sgerrand/glibc-builder 2.26 /usr/glibc-compat
docker cp glibc-binary:/glibc-bin-2.26.tar.gz ./
docker rm glibc-binary
```
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ general:
- "artifacts"
machine:
environment:
GLIBC_VERSION: 2.25
GLIBC_VERSION: 2.26
pre:
- sudo mv /usr/local/go /usr/local/go-1.6.2
- wget -q -O /tmp/go1.7.3.tgz https://storage.googleapis.com/golang/go1.7.3.linux-amd64.tar.gz
Expand Down

0 comments on commit 91892d5

Please sign in to comment.