phumpal / docker-pyenv-tox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker image with pyenv and npm

I use this for continuous integration with Gitlab CI, but it should be compatible with any CI/CD solution that supports docker.

Example .gitlab-ci.yml

image: "randomknowledge/docker-pyenv-tox"

before_script:
  - eval $(ssh-agent -s)
  - ssh-add <(echo "$SSH_PRIVATE_KEY")

tests:
  script:
  - "tox"
  tags:
  stage: test
  except:
  - tags
  only:
  - develop
  - master

About


Languages

Language:Dockerfile 100.0%