mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-20 05:11:18 +00:00
06f075976e
Rename the directory for continuous integration scripts to a more generic name as we're going to use more than one. The base image on travis has an old kernel. It's not possible to use a newer one and some tests fail making the coverage unreliable. Signed-off-by: David Sterba <dsterba@suse.com>
12 lines
293 B
Docker
12 lines
293 B
Docker
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 clang
|
|
RUN apk add python3 py3-setuptools python3-dev
|
|
|
|
COPY ./test-build .
|