mirror of
https://github.com/lovell/sharp.git
synced 2025-07-12 20:10:13 +02:00
17 lines
515 B
Docker
17 lines
515 B
Docker
FROM debian:wheezy
|
|
MAINTAINER Lovell Fuller <npm@lovell.info>
|
|
|
|
# Create Debian-based container suitable for building Linux x64 binaries
|
|
|
|
# Build dependencies
|
|
RUN \
|
|
echo "deb http://ftp.debian.org/debian wheezy-backports main" | tee /etc/apt/sources.list.d/wheezy-backports.list && \
|
|
apt-get update && \
|
|
apt-get install -y build-essential autoconf libtool nasm gtk-doc-tools texinfo advancecomp && \
|
|
apt-get -t wheezy-backports install -y jq
|
|
|
|
# Compiler settings
|
|
ENV \
|
|
PLATFORM="linux-x64" \
|
|
FLAGS="-O3"
|