Added dsa questions prompt to generate dsa questions #231
This file contains hidden or 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 Image CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: | | |
docker build . --file Dockerfile --tag openrepl:latest | |
docker history openrepl:latest | |
docker inspect openrepl:latest | |
- name: docker-image-size-limit | |
uses: wemake-services/docker-image-size-limit@master | |
with: # lint this image by itself | |
image: 'openrepl:latest' | |
size: 3GB | |
max_layers: 15 | |
show_current_size: true | |
exit_zero: true |