Spaces:
Runtime error
Runtime error
# Start from the sandbox runtime image | |
FROM hexdolemonai/lemon-runtime-sandbox:latest | |
# Set working directory | |
WORKDIR /workspace | |
# Copy your project files into the container | |
COPY . /workspace | |
# Setup environment variables (HF Spaces safe defaults) | |
ENV DOCKER_HOST_ADDR=host.docker.internal | |
ENV ACTUAL_HOST_WORKSPACE_PATH=/workspace | |
# Expose the app port | |
EXPOSE 5005 | |
# Default run command | |
CMD ["make", "run"] |