Skip to content
Snippets Groups Projects
Select Git revision
  • 6a3bd949e5dfaf78fc124cd512d271a479fa7d0d
  • master default protected
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

tests.sh

Blame
  • Dockerfile 198 B
    FROM python:3.9-slim 
    
    ENV KB_VERSION="0.26.0"
    
    RUN apt update && apt install -y procps && pip3 install kb-python==${KB_VERSION}
    
    COPY t2g.py /usr/bin/
    
    RUN chmod +x /usr/bin/t2g.py
    
    CMD [ "bash" ]