mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
33 lines
511 B
Docker
33 lines
511 B
Docker
FROM python:3.6-alpine
|
|
|
|
|
|
EXPOSE 5000
|
|
|
|
|
|
ENV FLASK_APP=opaque.py
|
|
|
|
|
|
RUN apk add \
|
|
bash \
|
|
build-base \
|
|
git \
|
|
postgresql-dev
|
|
|
|
|
|
RUN adduser -D opaque
|
|
USER opaque
|
|
WORKDIR /home/opaque
|
|
|
|
|
|
COPY app app
|
|
COPY migrations migrations
|
|
COPY config.py opaque.py requirements.txt ./
|
|
RUN python -m venv venv && \
|
|
venv/bin/pip install -r requirements.txt
|
|
|
|
# add wait for it
|
|
RUN git clone https://github.com/vishnubob/wait-for-it.git
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|