Quick Start
INFO
LakeSail offers flexible enterprise support options, including managing Sail on Kubernetes.
Get in touch to learn more.
You can quickly experiment with Sail by building the Docker image from the Sail Python package.
WARNING
This method is not suitable for production deployments. Please follow this guide for more information about building the Sail Docker image from source.
In an empty directory, create a Dockerfile
with the following content.
docker
FROM python:3.11-slim
ARG PYSAIL_VERSION
RUN python3 -m pip install --no-cache-dir "pysail[spark]==${PYSAIL_VERSION}"
ENTRYPOINT ["/usr/local/bin/sail"]
In the same directory, run the following command to build the Docker image.
bash
docker build -t sail:latest --build-arg PYSAIL_VERSION=0.2.0.dev0 .