Skip to content
Snippets Groups Projects
Select Git revision
  • 9b1efccf4c16a816f848980eea15fce00c20852c
  • main default protected
  • arts-xml-data-2.6
  • arts-xml-data-2.4
  • arts-xml-data-2.2
  • arts-xml-data-2.0
6 results

ChangeLog

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 211 B
    FROM python:3.8-buster
    
    COPY requirements.txt requirements.txt
    RUN pip install -r requirements.txt
    
    COPY auth_key auth_key
    COPY deepl_api.py deepl_api.py
    
    EXPOSE 5000
    
    ENTRYPOINT ["python"]
    CMD ["deepl_api.py"]