mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Build outside docker for faster builds.
This commit is contained in:
parent
3078b6073f
commit
ddb2820f52
4 changed files with 73 additions and 67 deletions
25
Dockerfile.graalvm-jvm.ci
Normal file
25
Dockerfile.graalvm-jvm.ci
Normal file
|
@ -0,0 +1,25 @@
|
|||
FROM ghcr.io/graalvm/native-image:latest as build
|
||||
|
||||
RUN jlink \
|
||||
--add-modules java.base,java.logging,java.sql,java.management,java.xml,java.naming,java.desktop,jdk.crypto.ec \
|
||||
--strip-debug \
|
||||
--no-man-pages \
|
||||
--no-header-files \
|
||||
--compress=2 \
|
||||
--output /javaruntime
|
||||
|
||||
FROM debian:stable-slim
|
||||
|
||||
ENV JAVA_HOME=/opt/java/openjdk
|
||||
ENV PATH "${JAVA_HOME}/bin:${PATH}"
|
||||
COPY --from=build /javaruntime $JAVA_HOME
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
COPY ./piped.jar /app/piped.jar
|
||||
|
||||
COPY VERSION .
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD java -jar /app/piped.jar
|
Loading…
Add table
Add a link
Reference in a new issue