cChardet/dockerfiles/slim/Dockerfile

10 lines
235 B
Text
Raw Normal View History

2020-10-07 09:56:06 +00:00
FROM python:3.9-slim-buster
2015-09-07 08:37:02 +00:00
ENV BUILD_DEPS gcc g++
RUN apt-get update && apt-get install -y $BUILD_DEPS --no-install-recommends && rm -rf /var/lib/apt/lists/*
RUN pip install cchardet
RUN apt-get purge -y --auto-remove $BUILD_DEPS