Files
dailyLove/Dockerfile

8 lines
220 B
Docker
Raw Normal View History

2023-06-12 13:48:38 +08:00
FROM openjdk:17
2023-05-15 11:44:27 +08:00
MAINTAINER bamanker
2023-06-13 19:45:17 +08:00
ARG JAR_FILE
2023-06-13 19:54:41 +08:00
ADD target/${JAR_FILE} /home/dailylove/dailylove.jar
ADD start.sh /home/dailylove/
RUN chmod +x /home/dailylove/start.sh
2023-05-14 15:16:02 +08:00
EXPOSE 13145
2023-06-13 19:54:41 +08:00
CMD ["sh","/home/dailylove/start.sh"]