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.

13 lines
340 B

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