nopaque/Dockerfile

36 lines
784 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
2019-12-02 10:34:28 +00:00
ENV FLASK_APP=nopaque.py
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/*
2019-12-02 10:34:28 +00:00
RUN groupadd --gid 1000 --system nopaque \
&& useradd --create-home --gid nopaque --no-log-init --system --uid 1000 nopaque
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
EXPOSE 5000
2019-12-02 10:34:28 +00:00
VOLUME ["/home/nopaque/logs", "/home/nopaque/migrations"]
2019-11-29 14:08:16 +00:00
COPY ["docker-entrypoint.sh", "/usr/local/bin/"]
ENTRYPOINT ["docker-entrypoint.sh"]