1
0
Fork 0
forked from s3lph/matemat
matemat/Dockerfile

11 lines
283 B
Docker
Raw Normal View History

2018-06-19 22:54:07 +02:00
FROM debian:buster
RUN useradd -d /home/matemat -m matemat
RUN apt-get update -qy
RUN apt-get install -y --no-install-recommends python3-dev python3-pip python3-coverage python3-setuptools build-essential
RUN pip3 install wheel pycodestyle mypy
WORKDIR /home/matemat
USER matemat