lemon / Dockerfile
likhonsheikh's picture
Update Dockerfile
755a9dc verified
raw
history blame contribute delete
412 Bytes
# 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"]