Merge pull request #57 from fossyy/staging

Update Go version to 1.23.1 and Alpine version to 3.20
This commit is contained in:
2024-09-14 20:55:40 +07:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM node:current-alpine3.19 AS node_builder
FROM node:current-alpine3.20 AS node_builder
WORKDIR /src
COPY /public /src/public
@ -14,7 +14,7 @@ RUN javascript-obfuscator ./public/validatePassword.js --compact true --self-def
RUN javascript-obfuscator ./public/websocket.js --compact true --self-defending true --output ./public/websocket_obfuscated.js
RUN cleancss -o ./public/output.css ./tmp/output.css
FROM golang:1.22.2-alpine3.19 AS go_builder
FROM golang:1.23.1-alpine3.20 AS go_builder
WORKDIR /src
COPY . .

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/fossyy/filekeeper
go 1.22.2
go 1.23.1
require (
github.com/a-h/templ v0.2.778