Commit eff4330b authored by nanahira's avatar nanahira

add build dockerfile

parent 4de427ed
Pipeline #724 passed with stages
in 11 minutes and 30 seconds
...@@ -4,6 +4,8 @@ stages: ...@@ -4,6 +4,8 @@ stages:
variables: variables:
GIT_DEPTH: "1" GIT_DEPTH: "1"
CONTAINER_TEST_IMAGE: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
CONTAINER_RELEASE_IMAGE: $CI_REGISTRY_IMAGE:latest
build: build:
stage: build stage: build
...@@ -25,6 +27,15 @@ build: ...@@ -25,6 +27,15 @@ build:
paths: paths:
- dist/ - dist/
docker:
stage: build
tags:
- docker
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build --pull --no-cache -t $CONTAINER_TEST_IMAGE .
- docker push $CONTAINER_TEST_IMAGE
upload_to_minio: upload_to_minio:
stage: deploy stage: deploy
dependencies: dependencies:
...@@ -37,3 +48,15 @@ upload_to_minio: ...@@ -37,3 +48,15 @@ upload_to_minio:
- aws s3 --endpoint=https://minio.mycard.moe:9000 sync dist/ s3://mycard/windbot - aws s3 --endpoint=https://minio.mycard.moe:9000 sync dist/ s3://mycard/windbot
only: only:
- master - master
deploy_docker:
stage: deploy
tags:
- docker
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker pull $CONTAINER_TEST_IMAGE
- docker tag $CONTAINER_TEST_IMAGE $CONTAINER_RELEASE_IMAGE
- docker push $CONTAINER_RELEASE_IMAGE
only:
- master
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment