Skip to content

Instantly share code, notes, and snippets.

@cheery
Created September 22, 2025 10:56
Show Gist options
  • Select an option

  • Save cheery/6bf66b6547e93608780ea44404e0f7a5 to your computer and use it in GitHub Desktop.

Select an option

Save cheery/6bf66b6547e93608780ea44404e0f7a5 to your computer and use it in GitHub Desktop.
How I got the lemonade to work

To build:

podman build -t lemonade:latest .

To run:

podman run --rm --device nvidia.com/gpu=all --security-opt=label=disable -v ./app:/app -v ./home:/root -p "8000:8000" -it --tz=local localhost/lemonade:latest

Then you can run the lemonade-server-dev.

FROM ubuntu
RUN apt-get update
RUN apt-get install python3 -y
RUN apt-get install pip -y
RUN pip3 install --break-system-packages lemonade-sdk[dev]
RUN apt-get install libcurl4-openssl-dev
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment