Skip to content

Commit

Permalink
Merge pull request #195 from salopensource/fixpsycopg2
Browse files Browse the repository at this point in the history
Add back in the missing dependencies
  • Loading branch information
grahamgilbert authored Feb 8, 2018
2 parents 0afdb0a + 8ac6424 commit 5c2ddad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ RUN apt-get update && \
supervisor \
libffi-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY setup/requirements.txt /requirements.txt
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
mkdir /tmp/setup
COPY setup/requirements.txt /tmp/setup/requirements.txt
COPY requirements.txt /tmp/requirements.txt
RUN easy_install pip && \
pip install -r /requirements.txt && \
rm /requirements.txt && \
pip install -r /tmp/requirements.txt && \
rm /tmp/requirements.txt && \
rm -rf /tmp/setup && \
update-rc.d -f postgresql remove && \
update-rc.d -f nginx remove && \
mkdir -p /home/app && \
Expand Down
7 changes: 1 addition & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
-r setup/requirements.txt
dj-database-url==0.3.0
dj-static==0.0.5
django-toolbelt==0.0.1
gunicorn==19.6.0
psycopg2==2.6.2
pystache==0.5.4
setproctitle=1.1.10
static==1.0.2
setproctitle==1.1.10
2 changes: 1 addition & 1 deletion sal/version.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>version</key>
<string>3.2.12.1116</string>
<string>3.2.13.1117</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion set_build_no.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

current_version="3.2.12"
current_version="3.2.13"
pushd `dirname $0` > /dev/null
SCRIPTPATH=`pwd`

Expand Down

0 comments on commit 5c2ddad

Please sign in to comment.