Files
tytd2025/Dockerfile
Mike Nolan d2f855881c
All checks were successful
Build and Deploy on Tag / 🔨 Build (push) Successful in 10s
Make it a little faster, queue is in sqlite now, fix db bug and more
2026-06-25 15:43:00 -05:00

14 lines
428 B
Docker

FROM git.tesses.org/tesses50/crosslang-withshell:latest AS build
COPY ./ /src/
RUN cd /src/Tesses.YouTubeDownloader.Server && crosslang build && cd bin && mv Tesses.YouTubeDownloader.Server-*.crvm tytd2025.crvm
FROM git.tesses.org/tesses50/crosslang:latest
COPY --from=build /src/Tesses.YouTubeDownloader.Server/bin/ /app
WORKDIR /data
ENV TYTDDIR=/data
EXPOSE 3255
ENTRYPOINT ["crossvm","/app/tytd2025.crvm","--port=3255"]