nikola-docker/Dockerfile
Elia el Lazkani cebaf9b88a
Some checks are pending
continuous-integration/drone/push Build is running
chore(): Installs required dependencies
2024-01-20 12:38:00 +01:00

8 lines
246 B
Docker

FROM python:3.9.18-alpine3.19
RUN apk update && \
apk upgrade && \
apk add --virtual .build-deps gcc python3-dev musl-dev linux-headers && \
pip install 'Nikola[extras]' && \
apk del .build-deps && \
rm -vrf /var/cache/apk/*