diff --git a/Dockerfile b/Dockerfile index ae6065b..93a7900 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ RUN apk add --no-cache git WORKDIR /app COPY . . -RUN go build -o main . +RUN go build -o server . EXPOSE 48723 -CMD ["./main"] +CMD ["./server"]