Sha256: aeb14ef8ee937fd2c63453166d2c79ac8ee8ab63888f255b9579943eded3562d
Contents?: true
Size: 555 Bytes
Versions: 6
Compression:
Stored size: 555 Bytes
Contents
# Base image for creating Ventriloquist services # # VERSION 0.0.1 FROM ubuntu:quantal MAINTAINER Fabio Rehm "fgrehm@gmail.com" ENV LC_ALL C ENV DEBIAN_FRONTEND noninteractive RUN echo "deb http://archive.ubuntu.com/ubuntu quantal main universe" > /etc/apt/sources.list RUN apt-get update && apt-get -y upgrade && apt-get clean RUN apt-get install -y wget curl vim language-pack-en build-essential software-properties-common && apt-get autoremove && apt-get clean RUN locale-gen en_US && echo 'LANG="en_US.UTF-8"' >> /etc/default/locale
Version data entries
6 entries across 6 versions & 1 rubygems