Some checks failed
Build and Push Image / Build and push image (push) Failing after 6m42s
16 lines
226 B
Docker
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"]
|