Skip to content

Commit

Permalink
fix3
Browse files Browse the repository at this point in the history
  • Loading branch information
runalsh committed Mar 3, 2024
1 parent d9e9c3a commit 2db5728
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/images-debian-test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: DEBIAN TEST
on: # [workflow_dispatch]
workflow_dispatch:
push:
branches: [ test ]
paths-ignore:
- '*.md'
- '.github/workflows/**'


jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.docker.debian
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ INCLUDE+ Dockerfile.base
RUN apt-get update && apt-get install -qq -y --no-install-recommends apt-utils
RUN curl -fsSL https://get.docker.com -o get-docker.sh
RUN chmod +x get-docker.sh
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN sh ./get-docker.sh
RUN rm -rf /var/lib/apt/lists/*
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

CMD ["bash"] .
3 changes: 2 additions & 1 deletion install-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ apt-get install -qq -y --no-install-recommends \
ca-certificates \
systemd \
systemd-sysv \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
apt-get clean

0 comments on commit 2db5728

Please sign in to comment.