Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
10 lines
191 B
Docker
10 lines
191 B
Docker
FROM ubuntu as build-env
|
|
|
|
WORKDIR /site
|
|
COPY . .
|
|
RUN /bin/bash compile.sh
|
|
|
|
FROM ghcr.io/nickorlow/anthracite:0.3.0
|
|
COPY --from=build-env /site/out/ /www/
|
|
COPY anthracite.cfg ./anthracite.cfg
|