Compare commits

..

No commits in common. "1784187e64546eaf3094eca6882a0c21b87481e4" and "9204e8e196fb472fcbf87873f0aecc6a3bd9c038" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -12,11 +12,11 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- uses: actions/setup-go@v6 - uses: actions/setup-go@v6
with: with:
go-version: '^1.25' go-version: '^1.25'
check-latest: false check-latest: true
cache-dependency-path: | cache-dependency-path: |
modules/server/go.sum modules/server/go.sum

View file

@ -1,7 +1,7 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
WORKDIR /app WORKDIR /app
COPY --chmod=755 modules/server/nyanimedb /app COPY --chmod=755 nyanimedb /app
COPY modules/server/templates /app/templates COPY modules/server/templates /app/templates
EXPOSE 8080 EXPOSE 8080
ENTRYPOINT ["/app/nyanimedb"] ENTRYPOINT ["/app/nyanimedb"]