mirror of
https://github.com/foomo/gocontentful.git
synced 2026-08-13 21:00:24 +00:00
13 lines
208 B
Docker
13 lines
208 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
RUN adduser -D -u 1001 -g 1001 gocontentful
|
|
|
|
COPY gocontentful /usr/bin/
|
|
|
|
USER gocontentful
|
|
WORKDIR /home/gocontentful
|
|
|
|
ENTRYPOINT ["gocontentful"]
|