Skip to content
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
7 changes: 4 additions & 3 deletions web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ add-apt-repository ppa:deadsnakes/ppa -y && \
apt-get update && \
apt-get install -y curl git build-essential sudo \
python3.6 python3-pip python3.6-dev \
nodejs npm \
postgresql postgresql-contrib \
libpq-dev libssl-dev libffi-dev libsasl2-dev libldap2-dev && \
nodejs-dev && \
apt-get install -y npm && \
apt-get install -y postgresql postgresql-contrib \
libpq-dev libffi-dev libsasl2-dev libldap2-dev && \
ln -sf /usr/bin/python3.6 /usr/local/bin/python3 && \
update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \
update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 && \
Expand Down