mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
13 lines
183 B
Docker
13 lines
183 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
RUN adduser -D -u 1001 -g 1001 gotsrpc
|
|
|
|
COPY gotsrpc /usr/bin/
|
|
|
|
USER gotsrpc
|
|
WORKDIR /home/gotsrpc
|
|
|
|
ENTRYPOINT ["gotsrpc"]
|