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.
10 lines
305 B
10 lines
305 B
|
10 months ago
|
FROM openjdk:17-jdk-alpine
|
||
|
|
MAINTAINER [AutoFlow]
|
||
|
|
|
||
|
|
RUN apk --no-cache add tzdata && cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime
|
||
|
|
|
||
|
|
RUN mkdir /server
|
||
|
|
ADD build/libs/autoflow-0.0.1-SNAPSHOT.jar /server/autoflow-0.0.1-SNAPSHOT.jar
|
||
|
|
|
||
|
|
WORKDIR /server
|
||
|
|
ENTRYPOINT ["java", "-jar", "autoflow-0.0.1-SNAPSHOT.jar"]
|