initial commit
This commit is contained in:
commit
a79e0a4557
10 changed files with 291 additions and 0 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
FROM alpine:3.6 as alpine
|
||||
RUN apk add -U --no-cache ca-certificates
|
||||
|
||||
FROM alpine:3.6
|
||||
EXPOSE 3000
|
||||
|
||||
ENV GODEBUG netdns=go
|
||||
|
||||
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||
|
||||
ADD drone-yaml-server /bin/
|
||||
ENTRYPOINT ["/bin/drone-yaml-server"]
|
Loading…
Add table
Add a link
Reference in a new issue