zs-starter-template/Dockerfile

18 lines
221 B
Docker
Raw Normal View History

# Build
FROM prologic/zs AS build
RUN mkdir -p /src
WORKDIR /src
# Copy content
COPY . .
2023-04-01 02:13:39 +00:00
# Build the site (in production mode)
RUN zs -p build
# Runtime
2023-03-16 09:34:28 +00:00
FROM prologic/zs AS runtime
COPY --from=build /src/.pub /data