Skip to content

Commit 571957e

Browse files
committed
feat(base): add STOPSIGNAL
1 parent eb53dd2 commit 571957e

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.github/workflows/base.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
base:
25-
- debian
26-
- debian-13
27-
- ubuntu
25+
- 'debian'
26+
- 'debian-13'
27+
- 'ubuntu'
2828

2929
steps:
3030
- uses: actions/checkout@v4

.github/workflows/java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
java:
48-
- lts
48+
- 'lts'
4949

5050
steps:
5151
- uses: actions/checkout@v4

.github/workflows/mono.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
mono:
48-
- latest
48+
- 'latest'
4949

5050
steps:
5151
- uses: actions/checkout@v4

.github/workflows/wine.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ jobs:
8080
fail-fast: false
8181
matrix:
8282
version:
83-
- stable
84-
- devel
85-
- staging
86-
- 10-stable
87-
- 9-stable
83+
- 'stable'
84+
- 'devel'
85+
- 'staging'
86+
- '10-stable'
87+
- '9-stable'
8888

8989
steps:
9090
- uses: actions/checkout@v4

base/debian-13/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ RUN set -eux; \
9292

9393
ENV LANG="en_US.UTF-8" LANGUAGE="en_US:en" LC_ALL="en_US.UTF-8"
9494

95+
STOPSIGNAL SIGINT
96+
9597
COPY ./scripts/base/ampstart.sh /ampstart.sh
9698
RUN chmod +x /ampstart.sh
9799
ENTRYPOINT ["/usr/bin/tini", "-g", "--", "/ampstart.sh"]

base/debian/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ RUN set -eux; \
9292

9393
ENV LANG="en_US.UTF-8" LANGUAGE="en_US:en" LC_ALL="en_US.UTF-8"
9494

95+
STOPSIGNAL SIGINT
96+
9597
COPY ./scripts/base/ampstart.sh /ampstart.sh
9698
RUN chmod +x /ampstart.sh
9799
ENTRYPOINT ["/usr/bin/tini", "-g", "--", "/ampstart.sh"]

base/ubuntu/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ RUN set -eux; \
9090

9191
ENV LANG="en_US.UTF-8" LANGUAGE="en_US:en" LC_ALL="en_US.UTF-8"
9292

93+
STOPSIGNAL SIGINT
94+
9395
COPY ./scripts/base/ampstart.sh /ampstart.sh
9496
RUN chmod +x /ampstart.sh
9597
ENTRYPOINT ["/usr/bin/tini", "-g", "--", "/ampstart.sh"]

0 commit comments

Comments
 (0)