You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
456 B
19 lines
456 B
FROM adoptopenjdk/openjdk8-openj9:alpine-slim |
|
|
|
MAINTAINER smallchill@163.com |
|
|
|
#验证码字体包 |
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories |
|
RUN set -xe && apk --no-cache add ttf-dejavu fontconfig |
|
|
|
RUN mkdir -p /blade/auth |
|
|
|
WORKDIR /blade/auth |
|
|
|
EXPOSE 8100 |
|
|
|
ADD ./target/blade-auth.jar ./app.jar |
|
|
|
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"] |
|
|
|
CMD ["--spring.profiles.active=test"]
|
|
|