Skip to content

Commit f1bc73a

Browse files
authored
Fix issue in entry-point in host-check dockerfile (#42)
1 parent dcb7d08 commit f1bc73a

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
The v1 release supports Cisco IOS-XR release versions from 7.7.1 to 7.10.1.
77

8+
### v1.1.17 (2024-06-11)
9+
10+
- Fixed entry-point in `host-check` Dockerfile.
11+
812
### v1.1.16 (2024-05-21)
913

1014
- Added Dockerfile to build `host-check` container image.

Dockerfile.host-check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ RUN apt-get -y update && \
1515

1616
COPY scripts/host-check .
1717

18-
ENTRYPOINT ["scripts/host-check"]
18+
ENTRYPOINT ["./host-check"]

pyproject.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@ target-version = ["py37", "py38", "py39", "py310"]
44
include = """
55
(
66
\\.py$
7-
| xr-compose$
8-
| host-check$
9-
)
10-
"""
11-
exclude = """
12-
(
13-
Dockerfile.host-check$
7+
| scripts/xr-compose$
8+
| scripts/host-check$
149
)
1510
"""
1611

0 commit comments

Comments
 (0)