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