mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
15373ed00f
- Add env variable GUNICORN_WORKERS (default: 1) - new Port (8000) - You don't need to run "flask deploy" by hand anymore
44 lines
861 B
Docker
44 lines
861 B
Docker
FROM python:3.6-slim-stretch
|
|
|
|
|
|
LABEL maintainer="inf_sfb1288@lists.uni-bielefeld.de"
|
|
|
|
|
|
ENV FLASK_APP=nopaque.py
|
|
ENV LANG=C.UTF-8
|
|
|
|
|
|
EXPOSE 8000
|
|
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --yes \
|
|
build-essential \
|
|
libpq-dev \
|
|
wait-for-it \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
RUN groupadd --gid 1000 --system nopaque \
|
|
&& useradd --create-home --gid nopaque --no-log-init --system --uid 1000 nopaque
|
|
USER nopaque
|
|
WORKDIR /home/nopaque
|
|
|
|
|
|
COPY ["app", "app"]
|
|
COPY ["migrations", "migrations"]
|
|
COPY ["tests", "tests"]
|
|
COPY ["config.py", "nopaque.py", "requirements.txt", "./"]
|
|
RUN python -m venv venv \
|
|
&& venv/bin/pip install --requirement requirements.txt \
|
|
&& mkdir logs
|
|
|
|
|
|
VOLUME ["/home/nopaque/logs", "/home/nopaque/migrations"]
|
|
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/local/bin/"]
|
|
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|