forked from lovell/sharp-libvips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
49 lines (44 loc) · 1.12 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
FROM alpine:3.11
LABEL maintainer="Lovell Fuller <npm@lovell.info>"
# Create Alpine 3.11 (musl 1.1.24) container suitable for building Linux x64 binaries
# Build dependencies
RUN \
apk update && apk upgrade && \
apk --update --no-cache add \
autoconf \
automake \
binutils \
brotli \
build-base \
cmake \
curl \
findutils \
git \
glib-dev \
gobject-introspection-dev \
gperf \
gtk-doc \
intltool \
jq \
libtool \
linux-headers \
nasm \
ninja \
python3 \
shared-mime-info \
texinfo \
&& \
apk --update --no-cache --repository https://alpine.global.ssl.fastly.net/alpine/edge/community/ add advancecomp && \
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
pip3 install meson
# Compiler settings
ENV \
PATH="/root/.cargo/bin:$PATH" \
PLATFORM="linuxmusl-x64" \
RUST_TARGET="x86_64-unknown-linux-musl" \
FLAGS="-O3 -fPIC"
# Musl defaults to static libs but we need them to be dynamic for host toolchain.
# The toolchain will produce static libs by default.
ENV \
RUSTFLAGS="-C target-feature=-crt-static"
COPY Toolchain.cmake /root/