Skip to content

Instantly share code, notes, and snippets.

@wayanjimmy
Created November 13, 2023 03:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wayanjimmy/bf659ea450cac32a45a70cf641bb65d2 to your computer and use it in GitHub Desktop.
Save wayanjimmy/bf659ea450cac32a45a70cf641bb65d2 to your computer and use it in GitHub Desktop.
Temporalite Docker Image
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