Skip to content

Commit

Permalink
Merge pull request #3 from kishaningithub/master
Browse files Browse the repository at this point in the history
Perform SIGTERM handling and upgrade redis, python, honcho
  • Loading branch information
madflojo committed Aug 20, 2018
2 parents bb400f0 + 7f92fcd commit 342600d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
@@ -1,12 +1,13 @@
FROM redis

RUN apt-get update --fix-missing && \
apt-get install -y stunnel python-pip && \
apt-get install -y stunnel python3-pip && \
rm -rf /var/lib/apt/lists/*
RUN pip install honcho
RUN pip3 install honcho

ADD stunnel.conf /stunnel.conf
ADD Procfile /Procfile

WORKDIR /
CMD honcho start
ENV PYTHONUNBUFFERED=1
CMD ["honcho", "start"]

0 comments on commit 342600d

Please sign in to comment.