[Snyk] Upgrade @emotion/react from 11.13.3 to 11.13.5 #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag arcorocr-frontend --no-cache | |
# - name: Kill container 1 | |
# run: docker ps -q --filter "publish=3000" | xargs docker stop | xargs docker rm | |
# # run: if [ $(docker ps -a --filter "name=arcorocr-frontend" | wc -l) -gt 0 ]; then docker ps -aq --filter "name=arcorocr-frontend" | xargs docker stop | xargs docker rm; fi | |
# continue-on-error: true | |
# - name: Kill container 2 | |
# run: docker ps -q --filter "publish=3001" | xargs docker stop | xargs docker rm | |
# continue-on-error: true | |
# - name: Kill container 3 | |
# run: docker ps -q --filter "publish=3002" | xargs docker stop | xargs docker rm | |
# continue-on-error: true | |
- name: Kill all containers | |
run: if [ $(docker ps -a | wc -l) -gt 1 ]; then docker ps -aq | xargs docker stop | xargs docker rm; fi | |
continue-on-error: true | |
- name: Deploy docker image 1 | |
run: docker run -d --restart unless-stopped -p 3000:3000 arcorocr-frontend | |
continue-on-error: true | |
- name: Deploy docker image 2 | |
run: docker run -d --restart unless-stopped -p 3001:3000 arcorocr-frontend | |
continue-on-error: true | |
- name: Docker purge | |
run: docker system prune -f | |