Skip to content
Snippets Groups Projects
Select Git revision
  • 6fae916e0e6cf2eaa2fea8fb9542d5c898b6ab8f
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

toggle.component.html

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"]