Skip to content

Commit

Permalink
No longer require strict Python version, correct Docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Oct 26, 2019
1 parent 51804f1 commit 55eb8f0
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 13 deletions.
5 changes: 0 additions & 5 deletions .infrastructure/arm.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ RUN cd /infracheck \
&& git remote remove origin || true \
&& git remote add origin https://github.com/riotkit-org/infracheck.git \
&& make install \
\
# execute unit tests and functional tests, to make sure the application works
&& make unit_test \
&& set -x && cd /infracheck/infracheck && ./functional-test.sh \
\
# after installing as package extract infrastructural files
\
&& cp -pr /infracheck/entrypoint.sh / \
Expand Down
5 changes: 0 additions & 5 deletions .infrastructure/x86_64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ RUN cd /infracheck \
&& git remote remove origin || true \
&& git remote add origin https://github.com/riotkit-org/infracheck.git \
&& make install \
\
# execute unit tests and functional tests, to make sure the application works
&& make unit_test \
&& set -x && cd /infracheck/infracheck && ./functional-test.sh \
\
# after installing as package extract infrastructural files
\
&& cp -pr /infracheck/entrypoint.sh / \
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ build_docs: ## Build documentation
install: build_package ## Install as a package
${PIP} install pipenv
test -f ./requirements.txt || ./.infrastructure/generate-requirements-txt.py
${SUDO} ${PIP} install -r ./requirements.txt
${SUDO} ${PY_BIN} ./setup.py install
which infracheck
make clean
Expand Down
3 changes: 0 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,3 @@ pytz = "*"
whois = "*"
ovh = "*"
python-dateutil = "*"

[requires]
python_version = "3.7"

0 comments on commit 55eb8f0

Please sign in to comment.