-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit_hash:2892020e0145e5746f34824410ed69c23a27ede2
- Loading branch information
Showing
2 changed files
with
23 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
# Note: this dockerfile assumes that context contains already built binaries. | ||
# See docs for details. | ||
|
||
FROM ubuntu:24.04 AS agent | ||
FROM ubuntu:24.04 AS base | ||
RUN apt-get update && apt-get install -y ca-certificates | ||
|
||
FROM base AS agent | ||
COPY /agent /perforator/agent | ||
|
||
FROM ubuntu:24.04 AS gc | ||
FROM base AS gc | ||
COPY /gc /perforator/gc | ||
|
||
FROM ubuntu:24.04 AS storage | ||
FROM base AS storage | ||
COPY /storage /perforator/storage | ||
|
||
FROM ubuntu:24.04 AS proxy | ||
FROM base AS proxy | ||
COPY /proxy /perforator/proxy | ||
COPY /create_llvm_prof /perforator/create_llvm_prof | ||
|
||
FROM ubuntu:24.04 AS web | ||
FROM base AS web | ||
COPY /web /perforator/web | ||
|
||
FROM ubuntu:24.04 AS migrate | ||
FROM base AS migrate | ||
COPY /migrate /perforator/migrate | ||
|
||
FROM ubuntu:24.04 AS offline_processing | ||
FROM base AS offline_processing | ||
COPY /offline_processing /perforator/offline_processing | ||
|