diff options
| author | Adam Hupp <adam@hupp.org> | 2020-01-11 23:31:03 -0800 |
|---|---|---|
| committer | Adam Hupp <adam@hupp.org> | 2020-01-11 23:46:38 -0800 |
| commit | 0cc14ee1dcd7e53efc74cb2e00df89e630b3d0c5 (patch) | |
| tree | bbbab0bcd3140f635e59277ec6dd6a1e37473ad3 /test/Dockerfile_bionic | |
| parent | 18c909c4c98463d8292a7d1733aec007f178f1e5 (diff) | |
| download | python-magic-0cc14ee1dcd7e53efc74cb2e00df89e630b3d0c5.tar.gz | |
Add dockerfiles for running tests on various Ubuntu LTS versions
Diffstat (limited to 'test/Dockerfile_bionic')
| -rwxr-xr-x | test/Dockerfile_bionic | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Dockerfile_bionic b/test/Dockerfile_bionic new file mode 100755 index 0000000..c180ea9 --- /dev/null +++ b/test/Dockerfile_bionic @@ -0,0 +1,8 @@ +FROM ubuntu:bionic +RUN apt-get update +RUN apt-get -y install python +RUN apt-get -y install python3 +RUN apt-get -y install locales +RUN locale-gen en_US.UTF-8 +COPY . /python-magic +CMD cd /python-magic/test && ./run.sh |
