nopaque/web/Dockerfile
2020-06-08 10:14:15 +02:00

37 lines
690 B
Docker

FROM python:3.6-slim-stretch
LABEL maintainer="inf_sfb1288@lists.uni-bielefeld.de"
ARG uid=1000
ARG gid=1000
ENV FLASK_APP=nopaque.py
ENV LANG=C.UTF-8
EXPOSE 5000
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 "${gid}" --system nopaque \
&& useradd --create-home --gid "${gid}" --no-log-init --system --uid "${uid}" nopaque
USER nopaque
WORKDIR /home/nopaque
COPY --chown=nopaque:nopaque [".", "."]
RUN python -m venv venv \
&& venv/bin/pip install --requirement requirements.txt \
&& mkdir logs
ENTRYPOINT ["./docker-entrypoint.sh"]