mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
stackbrew/ubuntu and ubuntu are the same thing now. Signed-off-by: Ben Firshman <ben@firshman.co.uk>
11 lines
242 B
Docker
11 lines
242 B
Docker
FROM ubuntu:13.10
|
|
RUN apt-get -qq update && apt-get install -y ruby1.8 bundler python
|
|
RUN locale-gen en_US.UTF-8
|
|
ADD Gemfile /code/
|
|
ADD Gemfile.lock /code/
|
|
WORKDIR /code
|
|
RUN bundle install
|
|
ADD . /code
|
|
EXPOSE 4000
|
|
CMD bundle exec jekyll build
|