Skip to content

Commit 508e35e

Browse files
committed
check
1 parent 4fc2961 commit 508e35e

File tree

3 files changed

+3
-44
lines changed

3 files changed

+3
-44
lines changed

Diff for: .github/workflows/build_docker_images.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
jobs:
2222
test-build-docker-images:
2323
runs-on: ubuntu-latest
24-
if: ${{ github.event_name == 'pull_request' }}
24+
if: github.event_name == 'pull_request'
2525
steps:
2626
- name: Set up Docker Buildx
2727
uses: docker/setup-buildx-action@v1
@@ -51,7 +51,7 @@ jobs:
5151

5252
build-and-push-docker-images:
5353
runs-on: ubuntu-latest
54-
if: ${{ github.event_name != 'pull_request' }}
54+
if: github.event_name != 'pull_request'
5555

5656
permissions:
5757
contents: read

Diff for: .github/workflows/test_docker_build.yml

-41
This file was deleted.

Diff for: docker/diffusers-pytorch-cpu/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip uv==0.1.11 && \
4141
scipy \
4242
tensorboard \
4343
transformers \
44-
pandas
44+
pandas matplotlib
4545

4646
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)