Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
FROM ruby:2.3.1
RUN printf "deb http://archive.debian.org/debian/ jessie main\n" > /etc/apt/sources.list
RUN printf "deb-src http://archive.debian.org/debian/ jessie main\n" >> /etc/apt/sources.list
RUN printf "deb http://security.debian.org jessie/updates main\n" >> /etc/apt/sources.list
RUN printf "deb-src http://security.debian.org jessie/updates main\n" >> /etc/apt/sources.list

RUN sed -i 's|http://httpredir.debian.org/debian|http://ftp.us.debian.org/debian|g' /etc/apt/sources.list \
&& echo 'deb http://ftp.us.debian.org/debian jessie-backports main' >> /etc/apt/sources.list \
&& apt-get clean && apt-get update && apt-get install -y \
&& echo 'deb http://archive.debian.org/debian jessie-backports main' >> /etc/apt/sources.list \
&& apt-get clean && apt-get -o Acquire::Check-Valid-Until=false update && apt-get install -y \
build-essential \
ffmpeg \
ghostscript \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Build the application images with:

Then fetch additional images and start the application:

$ dpcker-compose up
$ docker-compose up

Once all services are running, update the database schema:

Expand Down