This commit is contained in:
marsal wang
2022-04-14 11:57:50 +08:00
parent e32c035722
commit 69ca101c44
4 changed files with 131 additions and 3 deletions

View File

@ -1,6 +1,18 @@
FROM openjdk:11.0.13-slim-buster
FROM openjdk:11-jdk
RUN apt-get update && apt-get install -y curl
RUN apt-get update && apt-get install -y curl iotop wget procps lsof lib32gcc-s1
# RUN echo 'deb http://mirrors.163.com/debian/ stretch main non-free contrib' > /etc/apt/sources.list \
# && echo 'deb http://mirrors.163.com/debian/ stretch-updates main non-free contrib' >> /etc/apt/sources.list \
# && echo 'deb http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib' >> /etc/apt/sources.list \
# && apt-get update \
# && apt-get install -y fontconfig ttf-dejavu
# ENV LANG en_US.UTF-8
# RUN ln -s /lib/libc.musl-x86_64.so.1 /usr/lib/libc.musl-x86_64.so.1
# RUN sudo apt-get update && sudo apt-get install -y curl iotop wget procps lsof
# RUN sudo apt-get update && sudo apt-get install -y lsof
CMD ["java","--version"]