Skip to content

Commit 08a81fa

Browse files
committed
Updated Docker Go build version, updated version number
1 parent 09d25ff commit 08a81fa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.1-alpine AS build_base
1+
FROM golang:1.22.3-alpine AS build_base
22

33
## Usage:
44
## docker build . -t gokapi

build/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.1-bookworm
1+
FROM golang:1.22.3-bookworm
22

33
## To compile:
44
## cd Gokapi/build/

cmd/gokapi/Main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232

3333
// versionGokapi is the current version in readable form.
3434
// Other version numbers can be modified in /build/go-generate/updateVersionNumbers.go
35-
const versionGokapi = "1.8.3"
35+
const versionGokapi = "1.8.4"
3636

3737
// The following calls update the version numbers, update documentation, minify Js/CSS and build the WASM modules
3838
//go:generate go run "../../build/go-generate/updateVersionNumbers.go"

internal/webserver/web/templates/string_constants.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Change these for rebranding
2-
{{define "version"}}1.8.3{{end}}
2+
{{define "version"}}1.8.4{{end}}
33

44
// Specifies the version of JS files, so that the browser doesn't
55
// use a cached version, if the file has been updated

0 commit comments

Comments
 (0)