Skip to content

Commit

Permalink
Merge pull request #11 from sgerrand/glibc-2.24
Browse files Browse the repository at this point in the history
Bump glibc version to 2.24
  • Loading branch information
sgerrand authored Nov 3, 2016
2 parents 1773671 + 72ed41f commit e7414bb
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,6 +1,6 @@
FROM ubuntu-debootstrap:14.04
ENV PREFIX_DIR /usr/glibc-compat
ENV GLIBC_VERSION 2.23
ENV GLIBC_VERSION 2.24
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.23 with a prefix of `/usr/glibc-compat`:
Build a glibc package based on version 2.24 with a prefix of `/usr/glibc-compat`:

```
docker run --rm -e STDOUT=1 andyshinn/glibc-builder 2.23 /usr/glibc-compat > glibc-bin.tar.gz
docker run --rm -e STDOUT=1 andyshinn/glibc-builder 2.24 /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 andyshinn/glibc-builder 2.23 /usr/glibc-compat
docker cp glibc-binary:/glibc-bin-2.23.tar.gz ./
docker run --name glibc-binary andyshinn/glibc-builder 2.24 /usr/glibc-compat
docker cp glibc-binary:/glibc-bin-2.24.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.23
GLIBC_VERSION: 2.24
services:
- docker
dependencies:
Expand Down

0 comments on commit e7414bb

Please sign in to comment.