Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
updated docker builder OS to go version 1.17 (h2non#371)
  • Loading branch information
Angelo Girardi authored Oct 17, 2021
commit a244cd9fb9adc5af053a1b1a000f6c290940b074
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GOLANG_VERSION=1.14
FROM golang:${GOLANG_VERSION} as builder
ARG GOLANG_VERSION=1.17
FROM golang:${GOLANG_VERSION}-buster as builder

ARG IMAGINARY_VERSION=dev
ARG LIBVIPS_VERSION=8.10.0
Expand Down Expand Up @@ -50,7 +50,7 @@ RUN go mod download
COPY . .

# Run quality control
RUN go test -test.v -test.race -test.covermode=atomic .
RUN go test ./... -test.v -race -test.coverprofile=atomic .
RUN golangci-lint run .

# Compile imaginary
Expand Down