Compare commits

...

No commits in common. "395492e649c7dc8894a5f009f91181beca0db3e5" and "25b282c8568930d4a479a0403f2d55f2a3223301" have entirely different histories.

3 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,4 @@
/testenv/
build/*
dist/*
*.egg-info/*

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/testenv/
/build/
/dist/
/*.egg-info

View File

@ -11,7 +11,7 @@ RUN pip3 install -r /tmp/requirements.txt
ADD . /tmp/code/
RUN cd /tmp/code && \
pip3 setup.py install
python3 setup.py install
USER nobody