about summary refs log tree commit diff
path: root/docker
diff options
context:
space:
mode:
authorPaweł Jastrzębski <[email protected]>2017-03-12 15:28:54 +0100
committerPaweł Jastrzębski <[email protected]>2017-03-12 15:28:54 +0100
commit40e1ab4cf387d276ea3385cb115294fb5e6e46a4 (patch)
tree16c0752c9b19eb6cff35793dce636ef95a99dd5f /docker
parentUpdated dependencies (diff)
downloadkcc-40e1ab4cf387d276ea3385cb115294fb5e6e46a4.tar.gz
kcc-40e1ab4cf387d276ea3385cb115294fb5e6e46a4.tar.bz2
kcc-40e1ab4cf387d276ea3385cb115294fb5e6e46a4.zip
Updated build environment
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile7
1 files changed, 2 insertions, 5 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 784bfac..89dd7e3 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,14 +1,11 @@
 # acidweb/kcc
-FROM debian:jessie
+FROM debian:stretch
 MAINTAINER Paweł Jastrzębski <[email protected]>
 
 ADD ./Build /Build
 
-RUN printf "deb http://httpredir.debian.org/debian stretch main" > /etc/apt/sources.list.d/stretch.list
-RUN printf "Package: *\nPin: release a=testing\nPin-Priority: 400\n" > /etc/apt/preferences.d/stretch.pref
 RUN apt-get update && apt-get -y dist-upgrade
-RUN apt-get -y install build-essential curl ruby ruby-dev libpng-dev libjpeg-dev
-RUN apt-get -y -t testing install python3 python3-dev python3-pyqt5
+RUN apt-get -y install build-essential curl ruby ruby-dev libpng-dev libjpeg-dev python3 python3-dev python3-pyqt5
 RUN curl https://bootstrap.pypa.io/get-pip.py | python3
 RUN apt-get clean -y && apt-get autoclean -y && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*