dockerfiles/java_oci_manage/Dockerfile

14 lines
500 B
Docker
Raw Normal View History

2022-12-26 15:47:53 +08:00
FROM openjdk:20-ea-11-jdk-slim-bullseye
LABEL maintainer="Stille <stille@ioiox.com>"
2024-03-09 15:50:53 +08:00
ENV VERSION 4.9.2
2022-12-26 15:47:53 +08:00
RUN apt-get update && apt-get install -y wget procps
WORKDIR /app
2023-02-08 00:25:15 +08:00
RUN wget -O gz_client_bot.tar.gz https://github.com/semicons/java_oci_manage/releases/download/v${VERSION}/gz_client_bot.tar.gz \
2022-12-26 15:47:53 +08:00
&& tar -zxvf gz_client_bot.tar.gz --exclude=client_config \
&& tar -zxvf gz_client_bot.tar.gz --skip-old-files client_config \
&& rm -rf gz_client_bot.tar.gz \
&& chmod +x sh_client_bot.sh