Compare commits

..

2 commits

Author SHA1 Message Date
1784187e64
fix: server Dockerfile app path
Some checks failed
Build and Deploy Go App / build (push) Failing after 9m56s
Build and Deploy Go App / deploy (push) Has been skipped
2025-10-08 19:25:25 +03:00
f13b5e2237
fix: disable check-latest 2025-10-08 19:19:12 +03:00
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: true check-latest: false
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 nyanimedb /app COPY --chmod=755 modules/server/nyanimedb /app
COPY modules/server/templates /app/templates COPY modules/server/templates /app/templates
EXPOSE 8080 EXPOSE 8080
ENTRYPOINT ["/app/nyanimedb"] ENTRYPOINT ["/app/nyanimedb"]