Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.5 as build
FROM golang:1.20.1 as build
WORKDIR /app
COPY . .

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif
REPO=planetscale
NAME=pscale
BUILD_PKG=github.com/planetscale/cli/cmd/pscale
GORELEASE_CROSS_VERSION ?= v1.19.5
GORELEASE_CROSS_VERSION ?= v1.20.1

.PHONY: all
all: build test lint
Expand Down Expand Up @@ -67,5 +67,5 @@ release:
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/${REPO}/${NAME} \
-w /go/src/${REPO}/${NAME} \
goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION} \
ghcr.io/goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION} \
release --rm-dist ${GORELEASER_EXTRA_ARGS}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

services:
app:
image: golang:1.19.5
image: golang:1.20.1
volumes:
- .:/work
working_dir: /work
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.licensed
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.5-bullseye
FROM golang:1.20.1-bullseye

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y ruby-dev rubygems ruby cmake pkg-config git-core libgit2-dev
Expand Down