ungleich-staticcms/Dockerfile
2024-10-13 11:45:56 +09:00

10 lines
192 B
Docker

FROM alpine:3.20
RUN apk add --no-cache make python3 imagemagick
COPY . /build
WORKDIR /build
RUN make build
FROM nginx:alpine
COPY --from=0 /ungleich-staticcms-build /usr/share/nginx/html