# Dockerfile for Python 3 with xz-utils (for tar.xz unpacking)

FROM python:3.6-slim

RUN apt update && apt install -y xz-utils patch axel
