netcat/Containerfile
Dominik Meyer 766ae469ba
Some checks failed
continuous-integration/drone/push Build is failing
ADD: some testing
2024-05-19 14:41:43 +02:00

10 lines
216 B
Docker

FROM alpine:latest
RUN apk --no-cache add netcat-openbsd
# add a user for running netcat in the container
RUN addgroup netcat && adduser -u 8888 -D -G netcat netcat
# run everything as the netcat user
USER netcat