mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2025-04-02 21:06:11 +03:00
Fix missing minify dependency and docker image
This commit is contained in:
parent
b79191b678
commit
4aab1832b5
2 changed files with 11 additions and 2 deletions
12
Dockerfile
12
Dockerfile
|
@ -1,10 +1,18 @@
|
|||
# Build
|
||||
FROM prologic/zs AS build
|
||||
FROM golang:alpine AS build
|
||||
|
||||
RUN apk add --no-cache -U build-base git
|
||||
|
||||
RUN mkdir -p /src
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
# Copy Makefile
|
||||
COPY Makefile ./
|
||||
|
||||
# Install deps
|
||||
RUN make deps
|
||||
|
||||
# Copy content
|
||||
COPY . .
|
||||
|
||||
|
@ -12,6 +20,6 @@ COPY . .
|
|||
RUN zs build
|
||||
|
||||
# Runtime
|
||||
FROM prologic/zs AS runtime
|
||||
FROM prologic/static AS runtime
|
||||
|
||||
COPY --from=build /src/.pub /data
|
||||
|
|
1
Makefile
1
Makefile
|
@ -8,6 +8,7 @@ all: build
|
|||
|
||||
deps:
|
||||
@$(GOCMD) install go.mills.io/zs@latest
|
||||
@$(GOCMD) install github.com/tdewolff/minify/v2/cmd/minify@latest
|
||||
|
||||
dev : DEBUG=1
|
||||
dev : build
|
||||
|
|
Loading…
Add table
Reference in a new issue