Skip to content

Upgrade versions, python->3.10 #105

Upgrade versions, python->3.10

Upgrade versions, python->3.10 #105

Workflow file for this run

---
name: docker checker
on:
pull_request:
branches:
- develop
paths:
- '.github/workflows/dive.yml'
- 'docker/**'
push:
paths:
- '.github/workflows/dive.yml'
- 'docker/**'
env:
ORG: dea
IMAGE: dea-sandbox
jobs:
dive:
runs-on: ubuntu-latest
name: Analyze image efficiency
steps:
- name: Checkout
uses: actions/checkout@v3
- name: lint
uses: luke142367/[email protected]
with:
target: docker/Dockerfile
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
run: |
docker build -t ${ORG}/${IMAGE}:_build ./docker/
- name: Dive
uses: yuichielectric/[email protected]
with:
image: ${{ env.ORG }}/${{ env.IMAGE}}:_build
config-file: ${{ github.workspace }}/dive-ci.yml
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Docker image size check
uses: wemake-services/docker-image-size-limit@master
with:
image: ${{ env.ORG }}/${{ env.IMAGE}}:_build
size: "7 GiB"