aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorPhilipp Le <philipp-le-prviat@freenet.de>2020-09-19 22:54:48 +0200
committerPhilipp Le <philipp-le-prviat@freenet.de>2021-06-29 16:01:43 +0200
commit6b0b5fae076ba51c6c536b541e8f137039d8f915 (patch)
tree737d99f8557227e5db9c7ffeb044e30c7f35eb8e /Dockerfile
parent25c42d36eb989ced5fccf17910609b62bc4a623d (diff)
downloadihatemoney-mirror-6b0b5fae076ba51c6c536b541e8f137039d8f915.zip
ihatemoney-mirror-6b0b5fae076ba51c6c536b541e8f137039d8f915.tar.gz
ihatemoney-mirror-6b0b5fae076ba51c6c536b541e8f137039d8f915.tar.bz2
Added Docker Compose
* Added Docker compose file * Added postgresql to Docker image
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index bd34055..03255a5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,11 +19,12 @@ ENV NIGHTLY="" \
BABEL_DEFAULT_TIMEZONE="UTC" \
GREENLET_TEST_CPP="no"
-RUN apk update && apk add git gcc libc-dev libffi-dev openssl-dev wget &&\
+RUN apk update && apk add git gcc libc-dev libffi-dev openssl-dev wget postgresql-dev &&\
mkdir -p /etc/ihatemoney &&\
pip install --no-cache-dir gunicorn pymysql;
COPY ./conf/entrypoint.sh /entrypoint.sh
+COPY ./ /ihatemoney/
VOLUME /database
EXPOSE 8000