feat: server Dockerfile
Some checks failed
Build and Deploy Go App / build (push) Failing after 3m0s
Build and Deploy Go App / deploy (push) Has been skipped

This commit is contained in:
nihonium 2025-10-08 02:31:51 +03:00
parent 94f68bfbbb
commit 0a775f270c
Signed by: nihonium
GPG key ID: 0251623741027CFC

View file

@ -0,0 +1,7 @@
FROM alpine:3.20
WORKDIR /app
COPY nyanimedb .
RUN chmod +x ./nyanimedb
EXPOSE 8080
ENTRYPOINT ["./nyanimedb"]