about summary refs log tree commit diff
path: root/docker/Dockerfile
blob: 784bfac12e41101d61e939d1d0ef9d687ad7c62c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# acidweb/kcc
FROM debian:jessie
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 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/*

CMD /Build