diff options
author | Sriram Viswanathan <sriramv@thoughtworks.com> | 2017-05-10 16:39:01 -0300 |
---|---|---|
committer | Sriram Viswanathan <sriramv@thoughtworks.com> | 2017-05-10 16:39:01 -0300 |
commit | d002db8b790d76471da3a4525bdfb67bb22125dc (patch) | |
tree | c531df711f236cba833f80c9cc01bba3089096d9 | |
parent | bc0704a37fc66de113d3c41c3a18b7bde114f0a5 (diff) |
Remove dockerfile
-rw-r--r-- | provisioning/Dockerfile | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/provisioning/Dockerfile b/provisioning/Dockerfile deleted file mode 100644 index e96b1b98..00000000 --- a/provisioning/Dockerfile +++ /dev/null @@ -1,52 +0,0 @@ -# DOCKER-VERSION 1.1.0 -# -# Copyright (c) 2014 ThoughtWorks Deutschland GmbH -# -# Pixelated is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Pixelated is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with Pixelated. If not, see <http://www.gnu.org/licenses/>. - - -FROM debian:jessie - -MAINTAINER fbernitt@thoughtworks.com - -# Force -y for apt-get -RUN echo "APT::Get::Assume-Yes true;" >>/etc/apt/apt.conf - -# Install Pixelated User Packages -RUN echo "deb http://packages.pixelated-project.org/debian jessie-snapshots main" >> /etc/apt/sources.list -RUN apt-key adv --keyserver pool.sks-keyservers.net --recv-key 287A1542472DC0E3 - -# Update packages lists -RUN apt-get update -y --force-yes - -# Set the locale -# Install program to configure locales -RUN apt-get install -y locales -RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales && \ - locale-gen C.UTF-8 && \ - /usr/sbin/update-locale LANG=C.UTF-8 -# Install needed default locale for Makefly -RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && \ - locale-gen -# Set default locale for the environment -ENV LC_ALL C.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US.UTF-8 - -RUN apt-get install -y --force-yes python-gnupg -RUN apt-get install -y --force-yes pixelated-user-agent - -RUN ln -s /mnt/user/ /.config - -EXPOSE 4567 |