Created
November 13, 2023 03:24
-
-
Save wayanjimmy/bf659ea450cac32a45a70cf641bb65d2 to your computer and use it in GitHub Desktop.
Temporalite Docker Image
This file contains hidden or 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
FROM curlimages/curl as builder | |
WORKDIR / | |
RUN curl -sSf https://temporal.download/cli.sh | sh | |
FROM gcr.io/distroless/base-debian11 | |
COPY --from=builder /home/curl_user/.temporalio/bin/temporal /bin/temporal | |
EXPOSE 7233 | |
EXPOSE 8233 | |
ENTRYPOINT ["temporal", "server", "start-dev", "--ip" , "0.0.0.0", "-f", "/var/lib/temporalite/temporal.db"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment