Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated azure dependencies fixes #89 #90

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM golang:alpine AS build-env
RUN apk add --update make git
WORKDIR /src
ADD . .
RUN go get github.com/Sirupsen/logrus
RUN go get github.com/annerajb/rancher-letsencrypt/letsencrypt
RUN make build

# final stage
FROM alpine:3.5
COPY --from=build-env /src/build/rancher-letsencrypt-linux-amd64 /usr/bin/rancher-letsencrypt
COPY package/rancher-entrypoint.sh /usr/bin/
RUN apk add --no-cache ca-certificates openssl bash &&\
wget -O /usr/bin/update-rancher-ssl https://raw.githubusercontent.com/rancher/rancher/08278ace626ada71384fc949bd637f4c15b03b53/server/bin/update-rancher-ssl && \
chmod +x /usr/bin/update-rancher-ssl &&\
chmod +x /usr/bin/rancher-letsencrypt

EXPOSE 80
ENTRYPOINT ["/usr/bin/rancher-entrypoint.sh"]
4 changes: 2 additions & 2 deletions context.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"time"

"github.com/Sirupsen/logrus"
"github.com/janeczku/rancher-letsencrypt/letsencrypt"
"github.com/janeczku/rancher-letsencrypt/rancher"
"github.com/annerajb/rancher-letsencrypt/letsencrypt"
"github.com/annerajb/rancher-letsencrypt/rancher"
)

const (
Expand Down
5 changes: 3 additions & 2 deletions vendor.conf
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# package
github.com/janeczku/rancher-letsencrypt

github.com/janeczku/rancher-letsencrypt 0913231
github.com/aws/aws-sdk-go v1.8.6
github.com/Azure/azure-sdk-for-go v10.0.2-beta
github.com/Azure/go-autorest v8.0.0
github.com/Azure/azure-sdk-for-go v10.2.1-beta
github.com/Azure/go-autorest 0545944
github.com/dgrijalva/jwt-go 6c8dedd
github.com/dnsimple/dnsimple-go 5a5b427
github.com/edeckers/auroradnsclient 8b777c1
Expand Down
6 changes: 5 additions & 1 deletion vendor/github.com/Azure/azure-sdk-for-go/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions vendor/github.com/Azure/azure-sdk-for-go/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/Azure/azure-sdk-for-go/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions vendor/github.com/Azure/azure-sdk-for-go/arm/dns/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions vendor/github.com/Azure/azure-sdk-for-go/buildTerraform.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions vendor/github.com/Azure/azure-sdk-for-go/glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/Azure/azure-sdk-for-go/glide.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion vendor/github.com/Azure/go-autorest/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 110 additions & 0 deletions vendor/github.com/Azure/go-autorest/autorest/authorization.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/github.com/Azure/go-autorest/autorest/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading