We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c70f4c commit 528f35fCopy full SHA for 528f35f
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.14 as build-deps
+FROM quay.io/cdis/golang:1.15 as build-deps
2
3
# Build static binary
4
RUN mkdir -p /go/src/github.com/uc-cdis/ssjdispatcher
handlers/configuration.go
@@ -29,7 +29,7 @@ func GetMaxJobConfig() int {
29
func GetCleanupTime() int {
30
cleanupTime, err := strconv.Atoi(os.Getenv("CLEANUP_TIME"))
31
if err != nil {
32
- cleanupTime = 60
+ cleanupTime = 120
33
}
34
return cleanupTime
35
0 commit comments