Fixed log

This commit is contained in:
2025-09-24 14:03:42 +02:00
parent 0800c8f700
commit 1444c24b0d
2 changed files with 15 additions and 18 deletions

View File

@@ -1,10 +1,8 @@
FROM alpine:latest
# Install socat and netcat in a single RUN command and clean up cache
RUN apk add --no-cache socat netcat-openbsd \
&& rm -rf /var/cache/apk/* /tmp/*
# Create socket directory and copy/set permissions in single layers
COPY entrypoint.sh VERSION /
RUN mkdir -p /socket \
&& chmod +x /entrypoint.sh