added client Makefile

This commit is contained in:
Pin
2022-05-30 14:10:37 -04:00
parent d904521ff7
commit 7c52844c16
5 changed files with 15 additions and 2 deletions

9
server/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM golang:1.18.2-alpine
RUN mkdir -p /src
COPY server.go /src
WORKDIR /src
RUN go build server.go