mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
12 lines
347 B
Docker
12 lines
347 B
Docker
|
FROM ibm-semeru-runtimes:open-17-jre
|
||
|
|
||
|
WORKDIR /app/
|
||
|
|
||
|
COPY ./piped.jar /app/piped.jar
|
||
|
|
||
|
COPY VERSION .
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
CMD java -server -XX:+UnlockExperimentalVMOptions -XX:+OptimizeStringConcat -XX:+UseStringDeduplication -XX:+UseCompressedOops -XX:+UseNUMA -XX:+UseParallelGC -XX:-UseBiasedLocking -Xshareclasses:allowClasspaths -jar /app/piped.jar
|