Hello again, I'm having troubles building the dockerfile.
Have you ever tried building a docker with this package? I don't know what I'm missing.
Thank you
ENV CGO_ENABLED=1
RUN apk add build-base
RUN apk add libc-dev
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o ./out/app ./main.go
CMD ["./out/app"]
Hello again, I'm having troubles building the dockerfile.
Have you ever tried building a docker with this package? I don't know what I'm missing.
Thank you