Merge remote-tracking branch 'upstream/master' into feat-setup

This commit is contained in:
Tim Möhlmann
2018-10-24 14:45:21 +03:00
79 changed files with 1473 additions and 905 deletions

View File

@@ -4,7 +4,7 @@ RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt requirements.txt
RUN apk add --no-cache git \
RUN apk add --no-cache git curl \
&& pip install -r requirements.txt
COPY server.py ./server.py
@@ -18,3 +18,5 @@ COPY templates /data/master/templates
EXPOSE 80/tcp
CMD gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload main:app
HEALTHCHECK CMD curl -f -L http://localhost/ || exit 1