mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2025-04-04 13:53:31 +03:00
Fix docker image build speed by reusing the zs build image with extra tools
This commit is contained in:
parent
b747a17103
commit
2fd0ad63a0
1 changed files with 1 additions and 9 deletions
10
Dockerfile
10
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 . .
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue