Skip to content

Commit fa344d1

Browse files
fix(docker): remove version pin for netcat-openbsd in Dockerfile.temporal
- Updated the Dockerfile.temporal to remove the version pin for the netcat-openbsd package. This change allows for the installation of the latest version, ensuring that the build environment can benefit from any updates or fixes provided by the package maintainers. This modification enhances the flexibility of the Docker setup while maintaining the necessary functionality.
1 parent 270ecfd commit fa344d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile.temporal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV POSTGRES_SEEDS=$POSTGRES_SEEDS \
1616

1717
# Install netcat as root, then switch to non-root user
1818
USER root
19-
RUN apk add --no-cache netcat-openbsd=1.217-r0
19+
RUN apk add --no-cache netcat-openbsd
2020
USER temporal
2121

2222
HEALTHCHECK --interval=10s --timeout=5s --start-period=30s --retries=5 \

0 commit comments

Comments
 (0)