mirror of
https://github.com/qurator-spk/sbb_ner.git
synced 2026-02-26 10:21:56 +01:00
re-structure repo
This commit is contained in:
commit
16e63b4673
24 changed files with 13072 additions and 0 deletions
19
Dockerfile.cpu
Normal file
19
Dockerfile.cpu
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
FROM python:3.6-slim-stretch
|
||||
|
||||
ARG http_proxy
|
||||
ENV http_proxy=$http_proxy
|
||||
ENV https_proxy=$http_proxy
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get -y install build-essential && \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY requirements.txt /tmp
|
||||
RUN pip3 --no-cache-dir install -r /tmp/requirements.txt
|
||||
|
||||
COPY . /usr/src/qurator-mono-repo
|
||||
|
||||
RUN pip3 --no-cache-dir install -e /usr/src/qurator-mono-repo
|
||||
|
||||
WORKDIR /usr/src/qurator-mono-repo
|
||||
CMD env FLASK_APP=qurator/qurator_sbb_ner/webapp/app.py env FLASK_ENV=development env USE_CUDA=False flask run --host=0.0.0.0
|
||||
Loading…
Add table
Add a link
Reference in a new issue