This commit is contained in:
Egor Matveev
2024-12-31 00:53:40 +03:00
commit c2659fb49c
16 changed files with 480 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM golang:alpine
RUN mkdir /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN go build
ENTRYPOINT ["./queues-go"]