cChardet/dockerfiles/slim/Dockerfile
Marat Sharafutdinov 5fee5cd335 Support Python 3.9
2020-10-07 13:03:28 +03:00

9 lines
235 B
Docker

FROM python:3.9-slim-buster
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