Updated index.html
This commit is contained in:
parent
a45169d328
commit
d68d9699bf
2 changed files with 8 additions and 5 deletions
|
|
@ -1,13 +1,15 @@
|
|||
FROM golang:1.25.3 AS build
|
||||
ENV GIN_MODE=release
|
||||
ENV PORT=4320
|
||||
WORKDIR /app
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
RUN GOOS=linux GOARCH=amd64 GOAMD64=v1 go build -pgo=auto -ldflags="-s -w" -o bin/esign-server main.go
|
||||
RUN GOOS=linux GOARCH=amd64 GOAMD64=v1 go build -pgo=auto -ldflags="-s -w" -o /bin/esign-server main.go
|
||||
|
||||
FROM alpine:latest
|
||||
WORKDIR /app
|
||||
COPY --from=build /app/bin/esign-server .
|
||||
EXPOSE 4320
|
||||
CMD ["./esign-server"]
|
||||
COPY --from=build /bin/esign-server ./server
|
||||
EXPOSE $PORT
|
||||
CMD ["./server"]
|
||||
|
|
@ -8,7 +8,8 @@
|
|||
<meta name="description" content="Digital Signature added for OCBO (Office of the City Building Official)" />
|
||||
<meta name="title" property="og:title" content="OCBO e-Sign" />
|
||||
<meta name="keywords" content="HTML, CSS, JavaScript" />
|
||||
<meta name="author" content="Patrick Alvin Alcala" />
|
||||
<meta name="developer" content="Patrick Alvin Alcala" />
|
||||
<meta name="designer" content="Patrick Alvin Alcala" />
|
||||
<meta property="og:description" content="Digital Signature added for OCBO (Office of the City Building Official)" />
|
||||
<meta property="og:type" content="website" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue