mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-01 10:21:40 +00:00
btrfs-progs: ci: add dockerfile for a musl build test
Build environment with musl as the libc, based on Alpine Linux. To build the docker image: - cd travis/images - cp test-build $dir - cd $dir - docker build -t $tag . - docker push $tag We're going to have more images that will share the prep script so it has to be copied to the directory before making the image. No other way around that. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
47cbdeb836
commit
3cfe67998a
10
travis/images/ci-musl-x86_64/Dockerfile
Normal file
10
travis/images/ci-musl-x86_64/Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM alpine:edge
|
||||
|
||||
WORKDIR /tmp
|
||||
|
||||
RUN apk update
|
||||
RUN apk add linux-headers musl-dev util-linux-dev bash
|
||||
RUN apk add attr-dev acl-dev e2fsprogs-dev zlib-dev lzo-dev zstd-dev
|
||||
RUN apk add autoconf automake make gcc tar gzip
|
||||
|
||||
COPY ./test-build .
|
Loading…
Reference in New Issue
Block a user