Skip to content
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:latest as builder
FROM golang:1.19 as builder
WORKDIR /go/src
ADD . /go/src
RUN CGO_ENABLED=0 go build . && ls -l /go/src
RUN CGO_ENABLED=0 go build -buildvcs=false . && ls -l /go/src

FROM alpine:latest
RUN apk --update add tzdata && \
Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module github.com/p2pquake/userquake-aggregator
go 1.14

require (
github.com/fatih/structs v1.1.0
github.com/gin-gonic/gin v1.6.3
github.com/google/go-cmp v0.3.0 // indirect
github.com/kelseyhightower/envconfig v1.4.0
Expand Down
Loading