mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 04:11:20 +02:00
chore: update dockerfile
This commit is contained in:
parent
953141813c
commit
273d6a6986
@ -15,7 +15,6 @@ FROM golang:1.21-alpine AS backend
|
|||||||
WORKDIR /backend-build
|
WORKDIR /backend-build
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
COPY --from=frontend /frontend-build/web/dist ./server/frontend/dist
|
|
||||||
|
|
||||||
RUN CGO_ENABLED=0 go build -o memos ./bin/memos/main.go
|
RUN CGO_ENABLED=0 go build -o memos ./bin/memos/main.go
|
||||||
|
|
||||||
@ -26,6 +25,7 @@ WORKDIR /usr/local/memos
|
|||||||
RUN apk add --no-cache tzdata
|
RUN apk add --no-cache tzdata
|
||||||
ENV TZ="UTC"
|
ENV TZ="UTC"
|
||||||
|
|
||||||
|
COPY --from=frontend /frontend-build/web/dist /usr/local/memos/dist
|
||||||
COPY --from=backend /backend-build/memos /usr/local/memos/
|
COPY --from=backend /backend-build/memos /usr/local/memos/
|
||||||
|
|
||||||
EXPOSE 5230
|
EXPOSE 5230
|
||||||
|
14
server/frontend/dist/index.html
vendored
14
server/frontend/dist/index.html
vendored
@ -1,14 +0,0 @@
|
|||||||
<!-- THIS FILE IS A PLACEHOLDER AND SHOULD NOT BE CHANGED -->
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<title>Memos</title>
|
|
||||||
<!-- memos.metadata -->
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>No frontend embeded.</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,11 +1,10 @@
|
|||||||
package frontend
|
package frontend
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"embed"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
"html/template"
|
||||||
"io/fs"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/labstack/echo/v4"
|
"github.com/labstack/echo/v4"
|
||||||
@ -20,12 +19,6 @@ import (
|
|||||||
"github.com/usememos/memos/store"
|
"github.com/usememos/memos/store"
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:embed dist
|
|
||||||
var embeddedFiles embed.FS
|
|
||||||
|
|
||||||
//go:embed dist/index.html
|
|
||||||
var rawIndexHTML string
|
|
||||||
|
|
||||||
type FrontendService struct {
|
type FrontendService struct {
|
||||||
Profile *profile.Profile
|
Profile *profile.Profile
|
||||||
Store *store.Store
|
Store *store.Store
|
||||||
@ -42,32 +35,18 @@ func (s *FrontendService) Serve(e *echo.Echo) {
|
|||||||
// Use echo static middleware to serve the built dist folder.
|
// Use echo static middleware to serve the built dist folder.
|
||||||
// refer: https://github.com/labstack/echo/blob/master/middleware/static.go
|
// refer: https://github.com/labstack/echo/blob/master/middleware/static.go
|
||||||
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
||||||
Skipper: defaultAPIRequestSkipper,
|
Root: "dist",
|
||||||
HTML5: true,
|
|
||||||
Filesystem: getFileSystem("dist"),
|
|
||||||
}))
|
|
||||||
|
|
||||||
assetsGroup := e.Group("assets")
|
|
||||||
assetsGroup.Use(middleware.GzipWithConfig(middleware.GzipConfig{
|
|
||||||
Skipper: defaultAPIRequestSkipper,
|
Skipper: defaultAPIRequestSkipper,
|
||||||
Level: 5,
|
HTML5: true,
|
||||||
}))
|
|
||||||
assetsGroup.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
||||||
return func(c echo.Context) error {
|
|
||||||
c.Response().Header().Set(echo.HeaderCacheControl, "max-age=31536000, immutable")
|
|
||||||
return next(c)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
assetsGroup.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
|
||||||
Skipper: defaultAPIRequestSkipper,
|
|
||||||
HTML5: true,
|
|
||||||
Filesystem: getFileSystem("dist/assets"),
|
|
||||||
}))
|
}))
|
||||||
|
|
||||||
s.registerRoutes(e)
|
s.registerRoutes(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *FrontendService) registerRoutes(e *echo.Echo) {
|
func (s *FrontendService) registerRoutes(e *echo.Echo) {
|
||||||
|
rawIndexHTMLBytes, _ := os.ReadFile("dist/index.html")
|
||||||
|
rawIndexHTML := string(rawIndexHTMLBytes)
|
||||||
|
|
||||||
e.GET("/robots.txt", func(c echo.Context) error {
|
e.GET("/robots.txt", func(c echo.Context) error {
|
||||||
ctx := c.Request().Context()
|
ctx := c.Request().Context()
|
||||||
instanceURLSetting, err := s.Store.GetSystemSetting(ctx, &store.FindSystemSetting{
|
instanceURLSetting, err := s.Store.GetSystemSetting(ctx, &store.FindSystemSetting{
|
||||||
@ -194,14 +173,6 @@ func generateMemoMetadata(memo *store.Memo, creator *store.User) string {
|
|||||||
return strings.Join(metadataList, "\n")
|
return strings.Join(metadataList, "\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFileSystem(path string) http.FileSystem {
|
|
||||||
fs, err := fs.Sub(embeddedFiles, path)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
return http.FS(fs)
|
|
||||||
}
|
|
||||||
|
|
||||||
func defaultAPIRequestSkipper(c echo.Context) bool {
|
func defaultAPIRequestSkipper(c echo.Context) bool {
|
||||||
path := c.Request().URL.Path
|
path := c.Request().URL.Path
|
||||||
return util.HasPrefixes(path, "/api", "/memos.api.v2")
|
return util.HasPrefixes(path, "/api", "/memos.api.v2")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user