mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-07-15 17:00:42 +00:00
app
migrations
tests
.gitignore
.gitlab-ci.yml
Dockerfile
README.md
config.py
db.env.tpl
docker-compose.yml
docker-entrypoint.sh
opaque.py
requirements.txt
web.env.tpl
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"]
|