File size: 412 Bytes
755a9dc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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"]