Skip to content
Snippets Groups Projects
Select Git revision
  • 2d058237cecc71a716407982fad7dd0e7b1c4231
  • develop default protected
  • support-for-intellij-25.1
  • chore/support-for-intellijj-2024.3
  • feature/references
  • feature/commenter-for-aspect-files
  • feature/link-generated-code-and-definition
  • main
  • legacy
  • v0.3.5 protected
  • v0.3.4 protected
  • v0.3.3 protected
  • v0.3.2 protected
  • v0.3.1 protected
  • v0.3.0 protected
  • v0.2.0 protected
16 results

gradle.properties

Blame
  • Dockerfile 213 B
    FROM python:3.9
    COPY requirements.txt /requirements.txt
    RUN pip install -r requirements.txt
    
    COPY main.py utils.py cgv_connector_pb2.py /app/
    COPY config/ /app/config/
    WORKDIR "/app"
    ENTRYPOINT "python" "main.py"