mirror of
https://github.com/gosticks/caddy-docker.git
synced 2026-08-11 20:10:21 +00:00
9 lines
145 B
Docker
9 lines
145 B
Docker
FROM golang:1.11.5-alpine
|
|
|
|
RUN apk add --no-cache git gcc musl-dev
|
|
|
|
COPY builder.sh /usr/bin/builder.sh
|
|
|
|
CMD ["/bin/sh", "/usr/bin/builder.sh"]
|
|
|