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

Switch to using go modules #161

Merged
merged 1 commit into from
Oct 25, 2020
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM openfaas/classic-watchdog:0.18.10 as watchdog

FROM golang:1.13-alpine as build
FROM golang:1.15-alpine as build

ENV CGO_ENABLED=0
ENV GO111MODULE=off
ENV GO111MODULE=on

WORKDIR /go/src/github.com/alexellis/derek
COPY . .
Expand Down
130 changes: 0 additions & 130 deletions Gopkg.lock

This file was deleted.

46 changes: 0 additions & 46 deletions Gopkg.toml

This file was deleted.

14 changes: 14 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module github.com/alexellis/derek

go 1.15

require (
github.com/alexellis/hmac v0.0.0-20180624211220-5c52ab81c0de
github.com/dgrijalva/jwt-go v3.2.0+incompatible
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved
github.com/google/go-github v17.0.0+incompatible
github.com/google/go-querystring v1.0.0 // indirect
github.com/imdario/mergo v0.3.11
github.com/sirupsen/logrus v1.6.0
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
gopkg.in/yaml.v2 v2.3.0
)
Loading