nopaque/web/Dockerfile

43 lines
836 B
Docker
Raw Normal View History

2019-11-29 14:08:16 +00:00
FROM python:3.6-slim-stretch
2019-09-06 09:38:35 +00:00
2020-04-06 07:46:09 +00:00
LABEL maintainer="inf_sfb1288@lists.uni-bielefeld.de"
2020-06-05 12:42:04 +00:00
ARG uid=1000
ARG gid=1000
2019-12-02 10:34:28 +00:00
ENV FLASK_APP=nopaque.py
2020-04-06 07:46:09 +00:00
ENV LANG=C.UTF-8
2020-04-20 08:40:10 +00:00
EXPOSE 5000
2019-09-06 09:38:35 +00:00
2019-11-29 14:08:16 +00:00
RUN apt-get update \
&& apt-get install --no-install-recommends --yes \
build-essential \
libpq-dev \
wait-for-it \
&& rm -rf /var/lib/apt/lists/*
2020-06-05 12:42:04 +00:00
RUN groupadd --gid "${gid}" --system nopaque \
&& useradd --create-home --gid "${gid}" --no-log-init --system --uid "${uid}" nopaque
2019-12-02 10:34:28 +00:00
USER nopaque
WORKDIR /home/nopaque
2019-11-29 14:08:16 +00:00
COPY ["app", "app"]
COPY ["migrations", "migrations"]
COPY ["tests", "tests"]
2019-12-02 10:34:28 +00:00
COPY ["config.py", "nopaque.py", "requirements.txt", "./"]
2019-11-29 14:08:16 +00:00
RUN python -m venv venv \
&& venv/bin/pip install --requirement requirements.txt \
&& mkdir logs
COPY ["docker-entrypoint.sh", "/usr/local/bin/"]
2020-01-29 10:45:14 +00:00
ENTRYPOINT ["docker-entrypoint.sh"]