Skip to content
Snippets Groups Projects
Verified Commit 33a8612d authored by Stefan Hynek's avatar Stefan Hynek :drooling_face:
Browse files

build(docker): describe development stack

parent 4fca5087
No related branches found
No related tags found
No related merge requests found
# syntax=docker/dockerfile:1
FROM python:3.8
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]
---
version: '3.4'
services:
repdav:
image: repdav:latest
build:
context: .
ports:
- ${port:-8080}:${port:-8080}
environment:
host: ${host:-0.0.0.0}
port: ${port:-8080}
tg_auth_wsdl: "https://textgridlab.org/1.0/tgauth/wsdl/tgextra.wsdl"
tg_auth_address: "https://textgridlab.org/1.0/tgauth/tgextra.php"
volumes:
- $PWD/src:/app
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment