9 lines
202 B
Docker
9 lines
202 B
Docker
FROM eclipse-temurin:21-jre
|
|
WORKDIR /app
|
|
|
|
# package-release.sh creates this distribution before building the image.
|
|
COPY build/install/ScreenShareApi ./
|
|
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["./bin/ScreenShareApi"]
|