You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
307 B

  1. build giphy proxy docker:
  2. image: docker:stable
  3. stage: build
  4. before_script:
  5. - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
  6. script:
  7. - docker build -t $CI_REGISTRY_IMAGE/giphyproxy:latest giphyproxy
  8. - docker push $CI_REGISTRY_IMAGE/giphyproxy:latest
  9. only:
  10. - master