nopaque/daemon/Dockerfile

35 lines
730 B
Docker
Raw Normal View History

2020-06-05 12:42:04 +00:00
FROM python:3.6-slim-stretch
LABEL maintainer="inf_sfb1288@lists.uni-bielefeld.de"
ARG DOCKER_GID
ARG GID
ARG UID
2020-06-05 12:42:04 +00:00
ENV LANG=C.UTF-8
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 ${DOCKER_GID} --system docker \
&& groupadd --gid ${GID} --system nopaqued \
&& useradd --create-home --gid ${GID} --groups ${DOCKER_GID} --no-log-init --system --uid ${UID} nopaqued
2020-06-05 12:42:04 +00:00
USER nopaqued
WORKDIR /home/nopaqued
2020-06-08 08:14:15 +00:00
COPY --chown=nopaqued:nopaqued [".", "."]
2020-06-05 12:42:04 +00:00
RUN python -m venv venv \
&& venv/bin/pip install --requirement requirements.txt \
&& mkdir logs
2020-06-08 08:14:15 +00:00
ENTRYPOINT ["./docker-entrypoint.sh"]