mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
13 lines
192 B
Docker
13 lines
192 B
Docker
FROM azul/zulu-openjdk:17-jre-headless-latest
|
|
|
|
WORKDIR /app/
|
|
|
|
COPY hotspot-entrypoint.sh /
|
|
|
|
COPY ./piped.jar /app/piped.jar
|
|
|
|
COPY VERSION .
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["/hotspot-entrypoint.sh"]
|