Skip to content

Commit 8674174

Browse files
authored
Merge pull request #87 from Integrative-Transcriptomics/dev
Dev
2 parents 7af3910 + 9c7c787 commit 8674174

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

webapp/dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ WORKDIR /app
2727

2828
# Update package lists and install required packages
2929
RUN apt-get update && apt-get install -y \
30-
gcompat \
3130
libstdc++6 \
3231
gcc \
3332
g++ \
@@ -52,11 +51,11 @@ COPY setup.py /app
5251
RUN wget https://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig -P /app
5352
RUN chmod +x /app/bedGraphToBigWig
5453

55-
RUN python3 -m venv /app/env_tss_predator_web
54+
RUN python3.11 -m venv /app/env_tss_predator_web
5655
ENV PATH="/app/env_tss_predator_web/bin:$PATH"
57-
RUN python3 -m pip install --upgrade pip
56+
RUN python3.11 -m pip install --upgrade pip
5857
# install python dependencies
59-
RUN python3 -m pip install -r requirements.txt
58+
RUN python3.11 -m pip install -r requirements.txt
6059

6160
# Install the server package
6261
RUN pip install -e .

0 commit comments

Comments
 (0)