10 lines
192 B
Docker
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
|