surl/Dockerfile

6 lines
178 B
Docker
Raw Normal View History

2024-07-23 17:54:15 +08:00
FROM amazoncorretto:21
COPY . /usr/src/surl
WORKDIR /usr/src/surl
RUN chmod 754 ./gradlew && ./gradlew build -x test
CMD ["java", "-jar", "./build/libs/surl-0.0.1-SNAPSHOT.jar"]