Added Docker stuff.
This commit is contained in:
parent
66d5a12a87
commit
f5ab4e7d52
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
FROM python:alpine
|
||||
|
||||
RUN pip install --no-cache-dir flask gunicorn
|
||||
|
||||
COPY . /api
|
||||
WORKDIR /api
|
||||
|
||||
CMD ["gunicorn", "--bind", "0.0.0.0:80", "-w", "4", "--timeout", "1800", "--access-logfile", "-", "--preload", "wsgi:app"]
|
12
docker-compose.yml
Normal file
12
docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
version: "3"
|
||||
services:
|
||||
webapp:
|
||||
build: .
|
||||
ports:
|
||||
- 127.0.0.1:5000:80
|
||||
environment:
|
||||
- GF_FOLDER=/data/
|
||||
volumes:
|
||||
- /net/nas/resources/corpus/gigafida/v2.0/gigafida_dedup/tei/data:/data
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user