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