zs-starter-template/Dockerfile

18 lines
197 B
Docker
Raw Permalink Normal View History

# Build
FROM prologic/zs AS build
RUN mkdir -p /src
WORKDIR /src
# Copy content
COPY . .
# Build the site
2023-03-12 07:44:34 +00:00
RUN zs build
# Runtime
2023-03-16 09:34:28 +00:00
FROM prologic/zs AS runtime
COPY --from=build /src/.pub /data