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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
FROM ubuntu:bionic
MAINTAINER Patrick Oberdorf "[email protected]"

ENV DEBIAN_FRONTEND=noninteractive
ENV DEBIAN_FRONTEND=noninteractive PYCURL_SSL_LIBRARY=openssl

RUN apt-get update && apt-get install -y python \
libcurl4-openssl-dev \
libssl-dev \
locales \
python-setuptools \
python-requests \
python-pycurl \
python-crypto \
python-pil \
python-pyxmpp \
Expand All @@ -28,7 +29,7 @@ RUN apt-get update && apt-get install -y python \
gosu \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& pip install Send2Trash
&& pip install Send2Trash pycurl

# Set the locale
RUN locale-gen en_US.UTF-8
Expand Down