File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ WORKDIR /app
2727
2828# Update package lists and install required packages
2929RUN apt-get update && apt-get install -y \
30- gcompat \
3130 libstdc++6 \
3231 gcc \
3332 g++ \
@@ -52,11 +51,11 @@ COPY setup.py /app
5251RUN wget https://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig -P /app
5352RUN 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
5655ENV 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
6261RUN pip install -e .
You can’t perform that action at this time.
0 commit comments