Skip to content
This repository has been archived by the owner on Sep 19, 2022. It is now read-only.

Commit

Permalink
> fix image error
Browse files Browse the repository at this point in the history
  • Loading branch information
kebe7jun committed Mar 22, 2022
1 parent b72c28c commit 0703c5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ADD . .
RUN go build -ldflags "-s -w" -o ./dist/cacheproxy cmd/cacheproxy/main.go


FROM nginx:alpine
FROM ubuntu:20.04

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion page/page.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
type Paginate struct {
Page int64 `json:"page,omitempty" form:"page"`
PageSize int64 `json:"page_size,omitempty" form:"page_size"`
Total int64 `json:"total,omitempty"form:"total" `
Total int64 `json:"total,omitempty" form:"total" `
Sort string `json:"sort,omitempty" form:"sort"`
Search string `json:"search,omitempty" form:"search"`
}
Expand Down

0 comments on commit 0703c5f

Please sign in to comment.