personal-site/Dockerfile
Nicholas Orlowsky 51f5f62918
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
upgrade to anthracite 0.3.0
2025-02-24 21:40:21 -05:00

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