Sha256: 8b7d68dccf843292365163503c966235e217a983b3177296aea31a3c8540d171

Contents?: true

Size: 544 Bytes

Versions: 2

Compression:

Stored size: 544 Bytes

Contents

# Base image for creating Ventriloquist services

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 && \
    apt-get update && \
    apt-get -y upgrade && \
    apt-get install -y wget curl vim language-pack-en build-essential software-properties-common && \
    apt-get autoremove && \
    apt-get clean && \
    locale-gen en_US && \
    echo 'LANG="en_US.UTF-8"' >> /etc/default/locale

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ventriloquist-0.4.1 services/base/Dockerfile
ventriloquist-0.4.0 services/base/Dockerfile