blog/Dockerfile
Andrew Ridgway 7930055c11
Some checks failed
Build and Push Image / Build and push image (push) Failing after 6m42s
add_workflow
2024-08-13 13:47:31 +10:00

16 lines
226 B
Docker

FROM python:slim
WORKDIR /blog
COPY requirements.txt requirements.txt
ADD src/ /blog/
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y make
RUN make html
ENTRYPOINT ["make", "serve-global"]