nyanimedb/modules/server/Dockerfile
nihonium 0a775f270c
Some checks failed
Build and Deploy Go App / build (push) Failing after 3m0s
Build and Deploy Go App / deploy (push) Has been skipped
feat: server Dockerfile
2025-10-08 02:31:51 +03:00

7 lines
No EOL
111 B
Docker

FROM alpine:3.20
WORKDIR /app
COPY nyanimedb .
RUN chmod +x ./nyanimedb
EXPOSE 8080
ENTRYPOINT ["./nyanimedb"]