diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..4f6945d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +Dockerfile +default.sql +quotebd.cfg + diff --git a/Dockerfile b/Dockerfile index 396889e..6862ea1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.6 MAINTAINER Adam Dodman <"adam.dodman@gmx.com"> -ADD * /quotedb/ +COPY . /quotedb/ RUN apk add --no-cache python3 py3-pip tini gcc python3-dev libc-dev libffi-dev \ && pip3 install -r /quotedb/requirements.txt \