igriv commited on
Commit
0a660c3
·
1 Parent(s): f00b2e2

Add build-essential and libnauty-dev for pynauty compilation

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,9 +1,11 @@
1
  # Dockerfile for HuggingFace Spaces (Docker SDK)
2
  FROM python:3.10-slim
3
 
4
- # Install system dependencies
5
  RUN apt-get update && apt-get install -y \
6
  nauty \
 
 
7
  git \
8
  && rm -rf /var/lib/apt/lists/*
9
 
 
1
  # Dockerfile for HuggingFace Spaces (Docker SDK)
2
  FROM python:3.10-slim
3
 
4
+ # Install system dependencies (including build tools for pynauty)
5
  RUN apt-get update && apt-get install -y \
6
  nauty \
7
+ libnauty-dev \
8
+ build-essential \
9
  git \
10
  && rm -rf /var/lib/apt/lists/*
11