diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 0a7b97e..bcc3104 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -1,11 +1,8 @@ name: Docker Image CI on: - create: - tags: - - '*' push: - branches: [ beta-1.0 ] + branches: [ beta-2.0 ] jobs: @@ -22,8 +19,8 @@ jobs: - name: Build run: | - docker build -t getcarrier/executable_jar_runner:latest-gatling . + docker build -t getcarrier/executable_jar_runner:beta-2.0-gatling . - name: Push run: | - docker push getcarrier/executable_jar_runner:latest-gatling + docker push getcarrier/executable_jar_runner:beta-2.0-gatling diff --git a/Dockerfile b/Dockerfile index 51c4b91..51afb84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,8 @@ RUN add-apt-repository ppa:deadsnakes/ppa && apt-get update && \ python -m pip install 'common==0.1.2' 'configobj==5.0.6' 'redis==3.2.0' 'argparse==1.4.0' && \ rm -rf /tmp/* -RUN pip install git+https://github.com/carrier-io/perfreporter.git -RUN pip install git+https://github.com/carrier-io/loki_logger.git +RUN pip install git+https://github.com/carrier-io/perfreporter.git@beta-2.0 +RUN pip install git+https://github.com/carrier-io/loki_logger.git@beta-2.0 # Creating carrier user and making him sudoer RUN groupadd -g $GID $UNAME