Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #32

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions flexget/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM phusion/baseimage:0.9.16
FROM phusion/baseimage:0.9.18
MAINTAINER smdion <[email protected]>

ENV DEBIAN_FRONTEND noninteractive
Expand All @@ -7,10 +7,10 @@ ENV DEBIAN_FRONTEND noninteractive
ENV HOME /root

# Set the locale
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
RUN locale-gen de_DE.UTF-8
ENV LANG de_DE.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV LC_ALL de_DE.UTF-8

# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
Expand All @@ -26,7 +26,7 @@ ADD config.yml /config.yml
RUN add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty universe multiverse" && \
add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe multiverse" && \
apt-get update -qq && \
apt-get install -qq --force-yes python2.7 python-dev python-pip python-transmissionrpc wget && \
apt-get install -qq --force-yes libffi-dev python2.7 python-dev python-pip python-transmissionrpc wget && \
apt-get autoremove && \
apt-get autoclean && \
pip install flexget && \
Expand Down