diff --git a/Dockerfile b/Dockerfile index 5f16e658..d67220a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,7 +99,8 @@ ENV IN_DOCKER=True \ MERCURY_BINARY="$NODE_DIR/node_modules/.bin/mercury-parser" # Print version for nice docker finish summary -RUN archivebox version +# RUN archivebox version +RUN /app/bin/docker_entrypoint.sh archivebox version # Open up the interfaces to the outside world VOLUME "$DATA_DIR" diff --git a/tests/fixtures.py b/tests/fixtures.py index fbff5e0f..cca722f3 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -6,7 +6,6 @@ import pytest @pytest.fixture def process(tmp_path): os.chdir(tmp_path) - print("should be at", tmp_path) process = subprocess.run(['archivebox', 'init'], capture_output=True) return process @@ -26,4 +25,4 @@ def disable_extractors_dict(): "SAVE_MEDIA": "false", "SAVE_ARCHIVE_DOT_ORG": "false" }) - return env \ No newline at end of file + return env