Some checks are pending
Publish image / create-docker-images (push) Blocked by required conditions
9 lines
205 B
Docker
9 lines
205 B
Docker
FROM ghcr.io/getzola/zola:v0.19.2 AS builder
|
|
|
|
COPY . /project
|
|
WORKDIR /project
|
|
RUN ["zola", "build"]
|
|
|
|
FROM ghcr.io/static-web-server/static-web-server:2
|
|
WORKDIR /
|
|
COPY --from=builder /project/dist /public
|