Menu

[603cea]: / Dockerfile  Maximize  Restore  History

Download this file

25 lines (18 with data), 445 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:22.04
# Install system dependencies
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
python3-venv \
graphviz \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy project files
COPY . .
# Install PDPBioGen
RUN pip3 install -e .
# Test installation
RUN python3 -c "import pdpbiogen; print('PDPBioGen imported successfully')"
# Set entrypoint
ENTRYPOINT ["pdpbiogen"]