Skip to content

Commit

Permalink
fix: cleanup entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
natesales committed Jan 16, 2025
1 parent b144ef1 commit c0faad1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ RUN apt install -y iproute2

COPY --from=shim /nitro-attestation-shim /nitro-attestation-shim

ENV HOME=/

RUN nohup bash -c "ollama serve &" && sleep 5 && ollama pull llama3.2:1b

ENTRYPOINT ["sh", "-c", "echo Running && sleep 5 && /nitro-attestation-shim -d enclave-demo.tinfoil.sh -e [email protected] -u 11434 -c 7443 -l 443 -- /bin/ollama serve"]
ENTRYPOINT ["/nitro-attestation-shim", "-s", "-d", "inference-enclave.tinfoil.sh", "-e", "[email protected]", "-u", "11434", "-c", "7443", "-l", "443", "--", "/bin/ollama", "serve"]

0 comments on commit c0faad1

Please sign in to comment.