1
0
Fork 0
forked from s3lph/matemat

Added Docker and Git dependency to test image

This commit is contained in:
s3lph 2018-07-10 21:01:33 +02:00
parent 93319e874e
commit 9988ed4ef0
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
---
image: s3lph/matemat-ci:20180619-01
image: s3lph/matemat-ci:20180710-01
stages:
- test

View file

@ -3,7 +3,8 @@ 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 apt-get install -y --no-install-recommends git docker.io python3-dev python3-pip python3-coverage python3-setuptools build-essential
RUN usermod -aG docker matemat
RUN pip3 install wheel pycodestyle mypy
WORKDIR /home/matemat