-
-
Notifications
You must be signed in to change notification settings - Fork 560
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use multiple containers within snowpark service
- Loading branch information
Showing
5 changed files
with
33 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
File renamed without changes.
14 changes: 14 additions & 0 deletions
14
examples/command/portals/snowflake/example-5/snowflake_cdc_publisher/ockam/Dockerfile
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,14 @@ | ||
ARG BASE_IMAGE=python:3.10-slim-buster | ||
FROM ${BASE_IMAGE} AS base | ||
EXPOSE 9092 | ||
FROM ghcr.io/build-trust/ockam AS builder | ||
|
||
# Copy the ockam binary from the builder stage to the base image | ||
FROM base AS final | ||
COPY --from=builder /ockam /usr/local/bin/ockam | ||
|
||
# Copy the run.sh script to the base image and set appropriate permissions | ||
COPY --chmod=555 run.sh /run.sh | ||
|
||
# Set the entry point to run.sh | ||
ENTRYPOINT ["/run.sh"] |
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