Skip to content

Commit 7a92827

Browse files
Merge pull request #10 from DACCS-Climate/fix-dockerfile
allow extensions to be killed by docker
2 parents c3fb6aa + eba7db7 commit 7a92827

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN python -m pip install /log_parser $(for imp in ${EXTENSIONS}; do echo "-r /l
1111
RUN mkdir /log-parser-bin && \
1212
for imp in ${EXTENSIONS}; do \
1313
echo '#!/bin/sh' > "/log-parser-bin/log-parser-${imp}" && \
14-
echo "python /log_parser/extensions/${imp}/cli.py" '"$@"' >> "/log-parser-bin/log-parser-${imp}" && \
14+
echo "exec python /log_parser/extensions/${imp}/cli.py" '"$@"' >> "/log-parser-bin/log-parser-${imp}" && \
1515
chmod u+x "/log-parser-bin/log-parser-${imp}"; \
1616
done
1717

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "log_parser"
7-
version = "1.1.0"
7+
version = "1.1.1"
88
description = "A simple asynchronous log file parsing library"
99
readme = "README.md"
1010
requires-python = ">=3.12"

0 commit comments

Comments
 (0)