mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
add docker files
This commit is contained in:
parent
3092ec4b27
commit
f7ff7afcf9
4 changed files with 66 additions and 1 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
FROM adoptopenjdk/openjdk11:jdk11u-ubi-nightly-slim AS build
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
COPY . /app/
|
||||
|
||||
RUN chmod +x ./gradlew && ./gradlew shadowJar
|
||||
|
||||
FROM adoptopenjdk/openjdk11:ubi-minimal-jre
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
COPY --from=build /app/build/libs/piped-1.0-all.jar /app/piped.jar
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD java -jar /app/piped.jar
|
Loading…
Add table
Add a link
Reference in a new issue