Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

framework: new docker image based on Debian Stretch #3569

Merged
merged 1 commit into from
Feb 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
FROM debian:jessie
FROM debian:stretch
MAINTAINER SynoCommunity <https://synocommunity.com>

ENV LANG C.UTF-8

# Manage i386 arch
RUN dpkg --add-architecture i386

# Include backports for recent Meson build tool
RUN echo "deb http://deb.debian.org/debian stretch-backports main contrib non-free" > /etc/apt/sources.list.d/stretch-backports.list

# Install required packages
RUN apt-get update && \
apt-get install -y automake \
apt-get install --no-install-recommends -y automake \
libtool \
bc \
bison \
build-essential \
Expand All @@ -34,18 +38,21 @@ RUN apt-get update && \
libpcre3-dev \
libssl-dev \
libunistring-dev \
unzip \
lzip \
mercurial \
ncurses-dev \
php5 \
php \
pkg-config \
python3 \
subversion \
swig \
xmlto \
zlib1g-dev && \
apt-get -t stretch-backports -y install meson && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# recent meson for fuse and sshfs

# Install setuptools, wheel and pip for Python3
RUN wget https://bootstrap.pypa.io/get-pip.py -O - | python3
Expand Down