[MISC] Update Golang and QEMU to v1.14.0 and v4.2.0-6 respectively (#685)
* [MISC] Update Golang and QEMU to v1.14.0 and v4.2.0-6 respectively * Argon2id memory in MB for Config Template * Doc Fix Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>pull/688/head
parent
26369fff3d
commit
cc25b565c7
|
@ -1,7 +1,7 @@
|
|||
# =======================================
|
||||
# ===== Build image for the backend =====
|
||||
# =======================================
|
||||
FROM golang:1.13.6-alpine AS builder-backend
|
||||
FROM golang:1.14.0-alpine AS builder-backend
|
||||
|
||||
ARG BUILD_TAG
|
||||
ARG BUILD_COMMIT
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# =======================================
|
||||
# ===== Build image for the backend =====
|
||||
# =======================================
|
||||
FROM golang:1.13-alpine AS builder-backend
|
||||
FROM golang:1.14.0-alpine AS builder-backend
|
||||
|
||||
ARG BUILD_TAG
|
||||
ARG BUILD_COMMIT
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# =======================================
|
||||
# ===== Build image for the backend =====
|
||||
# =======================================
|
||||
FROM golang:1.13-alpine AS builder-backend
|
||||
FROM golang:1.14.0-alpine AS builder-backend
|
||||
|
||||
ARG BUILD_TAG
|
||||
ARG BUILD_COMMIT
|
||||
|
|
|
@ -44,7 +44,7 @@ func dockerBuildOfficialImage(arch string) error {
|
|||
// Set default Architecture Dockerfile to amd64
|
||||
dockerfile := "Dockerfile"
|
||||
// Set version of QEMU
|
||||
qemuversion := "v4.2.0-4"
|
||||
qemuversion := "v4.2.0-6"
|
||||
|
||||
// If not the default value
|
||||
if arch != defaultArch {
|
||||
|
|
|
@ -110,7 +110,7 @@ authentication_backend:
|
|||
## iterations: 1
|
||||
## key_length: 32
|
||||
## salt_length: 16
|
||||
## memory: 1048576
|
||||
## memory: 1024
|
||||
## parallelism: 8
|
||||
# Access Control
|
||||
#
|
||||
|
|
|
@ -66,7 +66,6 @@ file in the configuration file.
|
|||
- Recommended: `1024` (1GB) or as much RAM as you can afford to give to hashing
|
||||
- What it Does: Sets the amount of RAM used in MB for hashing
|
||||
|
||||
|
||||
#### Examples for specific systems
|
||||
|
||||
These examples have been tested against a single system to make sure they roughly take
|
||||
|
@ -113,6 +112,7 @@ The format of the users file is as follows.
|
|||
This file should be set with read/write permissions as it could be updated by users
|
||||
resetting their passwords.
|
||||
|
||||
|
||||
## Passwords
|
||||
|
||||
The file contains hashed passwords instead of plain text passwords for security reasons.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.13-alpine
|
||||
FROM golang:1.14.0-alpine
|
||||
|
||||
ARG USER_ID
|
||||
ARG GROUP_ID
|
||||
|
|
Loading…
Reference in New Issue