Anthony Debucquoy
6503af0096
This allow you to run `docker-compose up` in the backend directory to run the whole backend in a docker. by default the port is set to 4000
5 lines
139 B
Docker
5 lines
139 B
Docker
FROM eclipse-temurin:21-jdk-alpine
|
|
VOLUME /tmp
|
|
COPY build/libs/backend-0.0.1-SNAPSHOT.jar /app.jar
|
|
ENTRYPOINT ["java", "-jar", "/app.jar"]
|