Skip to content

Commit 5e87f04

Browse files
committed
update WF
1 parent 76cadc2 commit 5e87f04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
username: ${{ github.actor }}
6464
password: ${{ secrets.GITHUB_TOKEN }}
6565
- name: Check Disk Space
66-
run: df -h
66+
run: du -h --max-depth=1 /
6767
- name: Build and push
6868
uses: docker/build-push-action@v6
6969
with:

kube/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ENV SCALA_VERSION=2.12
3535
RUN mkdir /comet
3636
WORKDIR /comet
3737

38-
RUN du -h --max-depth=1
38+
RUN du -h --max-depth=1 /
3939

4040
# build native code first so that this layer can be re-used
4141
# if only Scala code gets modified
@@ -62,7 +62,7 @@ RUN mkdir -p /root/.m2 && \
6262

6363
RUN rm -rf /root/.rustup
6464

65-
RUN du -h --max-depth=1
65+
RUN du -h --max-depth=1 /
6666

6767
# Pick the JDK instead of JRE to compile Comet
6868
RUN cd /comet \

0 commit comments

Comments
 (0)