Commit 8298aeb2 authored by 智勇's avatar 智勇

jdk基础镜像增加telnet chrome

parent 4ba5311b
......@@ -2,9 +2,15 @@ FROM anapsix/alpine-java:8u201b09_jdk_unlimited
ENV TZ Asia/Shanghai
# vi to vim
RUN apk add vim && \
rm -rf /usr/bin/vi && \
ln -s /usr/bin/vim /usr/bin/vi
RUN set -eux && \
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && \
apk add --no-cache --update tzdata curl && \
apk add --no-cache --update busybox-extras && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
\ No newline at end of file
FROM anapsix/alpine-java:8u201b09_jdk_unlimited
ENV TZ Asia/Shanghai
# vi to vim
RUN apk add vim && \
rm -rf /usr/bin/vi && \
ln -s /usr/bin/vim /usr/bin/vi
RUN set -eux && \
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && \
apk add --no-cache --update tzdata curl && \
apk add --no-cache --update busybox-extras && \
apk add --no-cache --update chromium-chromedriver chromium && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment