fix: backend Dockerfile paths
Some checks failed
Build and Deploy Go App / build (push) Failing after 6m15s
Build and Deploy Go App / deploy (push) Has been skipped

This commit is contained in:
nihonium 2025-10-09 15:33:49 +03:00
parent cfc753bf84
commit ed965e9c21
Signed by: nihonium
GPG key ID: 0251623741027CFC

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 modules/backend/nyanimedb /app
COPY modules/server/templates /app/templates COPY modules/backend/templates /app/templates
EXPOSE 8080 EXPOSE 8080
ENTRYPOINT ["/app/nyanimedb"] ENTRYPOINT ["/app/nyanimedb"]