File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : Docker Release
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
push :
5
6
tags :
6
7
- ' [0-9]+.[0-9]+.[0-9]+'
69
70
context : ./docker
70
71
push : true
71
72
tags : ${{ steps.image_tags.outputs.tags }}
72
- platforms : linux/amd64,linux/arm64
73
+ platforms : linux/amd64,linux/arm64
Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
16
- ARG jdk_version=openjdk:17-bullseye
17
- FROM $jdk_version
16
+ FROM docker.io/debian:bookworm
17
+
18
18
19
19
MAINTAINER AutoMQ for Apache Kafka dev@automq.com
20
20
21
- # Set mirrors
22
- ARG general_mirror_url=""
23
- RUN [ -z "${general_mirror_url}" ] || (sed -i "s/deb.debian.org/${general_mirror_url}/g" /etc/apt/sources.list && sed -i "s|security.debian.org/debian-security|${general_mirror_url}/debian-security|g" /etc/apt/sources.list)
24
- RUN apt-get update -y && apt-get install -y vim
21
+ RUN apt-get update && apt-get install -y ca-certificates dnsutils iputils-ping curl wget netcat-openbsd sysstat net-tools htop procps zlib1g vim less openjdk-17-jdk libjemalloc-dev ipset iproute2 && \
22
+ apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
25
23
26
24
# Do not ask for confirmations when running apt-get, etc.
27
25
ENV DEBIAN_FRONTEND=noninteractive \
You can’t perform that action at this time.
0 commit comments