mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-09-26 21:01:15 +08:00
8 lines
221 B
Docker
8 lines
221 B
Docker
FROM alpine:latest
|
|
MAINTAINER Stille <stille@ioiox.com>
|
|
|
|
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
|
|
&& apk add --update openjdk8-jre-base \
|
|
&& rm -rf /var/cache/apk/*
|
|
|