diff --git a/Dockerfile b/Dockerfile index d134590..ac8ce5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,10 @@ # Build -FROM golang:alpine AS build - -RUN apk add --no-cache -U build-base git +FROM prologic/zs AS build RUN mkdir -p /src WORKDIR /src -# Copy Makefile -COPY Makefile ./ - -# Install deps -RUN make deps - # Copy content COPY . .