-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
39 additions
and
146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM debian:12-slim | ||
|
||
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* | ||
|
||
ARG TARGETARCH | ||
COPY bin/operator-Linux-${TARGETARCH} /hcp/operator | ||
COPY bin/rpc-Linux-${TARGETARCH} /hcp/rpc | ||
COPY bin/metrics-exporter-Linux-${TARGETARCH} /hcp/metrics-exporter | ||
COPY bin/open-head-Linux-${TARGETARCH} /hcp/open-head | ||
|
||
RUN chmod +x /hcp/* | ||
|
||
ENV PATH="/hcp:${PATH}" | ||
|
||
# Configure rocket to listen on all interfaces. | ||
ENV ROCKET_ADDRESS=0.0.0.0 | ||
ENV ROCKET_PORT=8000 | ||
|
||
# Expose the port that the application listens on. | ||
EXPOSE 8000 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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