File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
24
24
before_install :
25
25
- sudo apt-get update
26
- - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
26
+ - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
27
27
- nvm install 7
28
28
- nvm use 7
29
29
- if [ -f ${DOCKER_CACHE_FILE} ]; then gunzip -c ${DOCKER_CACHE_FILE} | docker load; fi
Original file line number Diff line number Diff line change 1
- FROM java:8-jre -alpine
1
+ FROM java:8-jdk -alpine
2
2
3
3
EXPOSE 8080
4
4
5
5
RUN set -ex && \
6
6
if [ $(wget -qO- ipinfo.io/country) == CN ]; then echo "http://mirrors.aliyun.com/alpine/latest-stable/main/" > /etc/apk/repositories ;fi && \
7
7
apk update && \
8
- apk add --no-cache zsh git
8
+ apk add --no-cache zsh git openssh
9
9
10
10
# Install oh-my-zsh
11
11
RUN git clone --depth=1 git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh \
You can’t perform that action at this time.
0 commit comments