We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c016405 + d64bb4b commit 9fbbf42Copy full SHA for 9fbbf42
Dockerfile
@@ -10,10 +10,20 @@ COPY requirements.txt .
10
# Install required Python packages
11
RUN pip install --no-cache-dir -r requirements.txt
12
13
+# Install build dependencies
14
+RUN apt-get update && apt-get install -y --no-install-recommends \
15
+ git \
16
+ gcc \
17
+ zlib1g-dev \
18
+ && rm -rf /var/lib/apt/lists/*
19
+
20
# Install seqtk
21
RUN git clone https://github.com/lh3/seqtk.git && \
22
cd seqtk && \
- make
23
+ make && \
24
+ cp seqtk /usr/local/bin/ && \
25
+ cd .. && \
26
+ rm -rf seqtk
27
28
# Copy the rest of the application code into the container
29
COPY . .
0 commit comments