Skip to content

Instantly share code, notes, and snippets.

@andrewpetrochenkov
Last active August 3, 2024 14:09
Show Gist options
  • Save andrewpetrochenkov/b3ac51af55dac99bb692936b2ee5ddb9 to your computer and use it in GitHub Desktop.
Save andrewpetrochenkov/b3ac51af55dac99bb692936b2ee5ddb9 to your computer and use it in GitHub Desktop.
python alpine lxml
FROM python:3.7-alpine
RUN apk update \
&& apk add --virtual .build-deps libxslt-dev \
&& apk del .build-deps \
&& rm -rf /var/cache/apk/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment