Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0b55a4ae
authored
Aug 13, 2023
by
Jungley
Committed by
GitHub
Aug 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: add stage caching to Dockerfile (#408)
parent
5545f0cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Dockerfile
+4
-2
No files found.
Dockerfile
View file @
0b55a4ae
FROM
node:16 as builder
WORKDIR
/build
COPY
web/package.json .
RUN
npm install
COPY
./web .
COPY
./VERSION .
RUN
npm install
RUN
DISABLE_ESLINT_PLUGIN
=
'true'
REACT_APP_VERSION
=
$(
cat
VERSION
)
npm run build
FROM
golang AS builder2
...
...
@@ -13,9 +14,10 @@ ENV GO111MODULE=on \
GOOS=linux
WORKDIR
/build
ADD
go.mod go.sum ./
RUN
go mod download
COPY
. .
COPY
--from=builder /build/build ./web/build
RUN
go mod download
RUN
go build
-ldflags
"-s -w -X 'one-api/common.Version=
$(
cat
VERSION
)
' -extldflags '-static'"
-o
one-api
FROM
alpine
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment