Skip to content
Snippets Groups Projects

Made edits to gitlab-ci.yml using alphafold2

Merged Fortune Iriaye requested to merge edit-gitlab-ci into main
1 file
+ 8
2
Compare changes
  • Side-by-side
  • Inline
+ 8
2
@@ -15,9 +15,15 @@ before_script:
push_docker_image:
stage: build
image: docker:26.0.1-dind
image: docker:26.0.1
services:
- docker:26.0.1-dind
variables:
DOCKER_HOST: tcp://docker:2375
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
script:
- docker build -t $DOCKER_IMAGE:$CI_COMMIT_SHORT_SHA -f docker/Dockerfile .
- docker push $DOCKER_IMAGE:$CI_COMMIT_SHORT_SHA
only:
- main # Only run on the main branch
- main
\ No newline at end of file
Loading