-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: try to deploy docker images to dockerhub
- Loading branch information
1 parent
a8699e5
commit e01bf55
Showing
3 changed files
with
39 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM rust:1.81.0-slim-bookworm as build | ||
|
||
# Create Docker image to run the emily server. | ||
FROM debian:bookworm-slim AS emily-server | ||
ENTRYPOINT ["echo", "Hello World from the emily-server!"] | ||
|
||
# Create Docker image to run the signer. | ||
FROM debian:bookworm-slim AS signer | ||
ENTRYPOINT ["echo", "Hello World from the signer!"] | ||
|
||
# Create Docker image to run the blocklist client. | ||
FROM debian:bookworm-slim AS blocklist-client | ||
ENTRYPOINT ["echo", "Hello World from the blocklist-client!"] |
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