Make it a little faster, queue is in sqlite now, fix db bug and more
Some checks failed
Build and Deploy on Tag / 🔨 Build (push) Failing after 8s
Some checks failed
Build and Deploy on Tag / 🔨 Build (push) Failing after 8s
This commit is contained in:
@@ -12,24 +12,8 @@ env:
|
||||
RESULT_IMAGE_NAME: tesses50/tytd2025
|
||||
|
||||
jobs:
|
||||
build-ppc:
|
||||
name: "🔨 Build for PowerPC"
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: git.tesses.org/tesses50/linux-ppc:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: bash build-for-ppc.sh
|
||||
- uses: akkuman/gitea-release-action@v1
|
||||
env:
|
||||
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
||||
with:
|
||||
prerelease: true
|
||||
files: |-
|
||||
artifacts/**
|
||||
|
||||
build-packages:
|
||||
name: "🔨 Build for everything else"
|
||||
name: "🔨 Build"
|
||||
runs-on: fw13-ubuntu-latest
|
||||
|
||||
container:
|
||||
|
||||
11
Dockerfile
11
Dockerfile
@@ -1,9 +1,12 @@
|
||||
FROM git.tesses.org/tesses50/crosslang-withshell:latest
|
||||
RUN mkdir /app
|
||||
COPY Tesses.YouTubeDownloader.Server/bin/ /app
|
||||
FROM git.tesses.org/tesses50/crosslang-withshell:latest AS build
|
||||
|
||||
RUN cd Tesses.YouTubeDownloader.Server && crosslang build && cd bin && mv Tesses.YouTubeDownloader.Server-*.crvm tytd2025.crvm
|
||||
|
||||
FROM git.tesses.org/tesses50/crosslang:latest
|
||||
COPY --from=build Tesses.YouTubeDownloader.Server/bin/ /app
|
||||
WORKDIR /data
|
||||
ENV TYTDDIR=/data
|
||||
|
||||
EXPOSE 3255
|
||||
|
||||
ENTRYPOINT ["crossvm","/app/Tesses.YouTubeDownloader.Server-1.0.0.0-prod.crvm","--port=3255"]
|
||||
ENTRYPOINT ["crossvm","/app/tytd2025.crvm","--port=3255"]
|
||||
Reference in New Issue
Block a user