goMuffin/Dockerfile

10 lines
No EOL
102 B
Docker

FROM golang:1.24.2
RUN mkdir /app
WORKDIR /app
COPY . .
RUN make
ENTRYPOINT [ "./build/goMuffin" ]