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
27
27
28
28
# Update package lists and install required packages
29
29
RUN apt-get update && apt-get install -y \
30
- gcompat \
31
30
libstdc++6 \
32
31
gcc \
33
32
g++ \
@@ -52,11 +51,11 @@ COPY setup.py /app
52
51
RUN wget https://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig -P /app
53
52
RUN chmod +x /app/bedGraphToBigWig
54
53
55
- RUN python3 -m venv /app/env_tss_predator_web
54
+ RUN python3.11 -m venv /app/env_tss_predator_web
56
55
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
58
57
# install python dependencies
59
- RUN python3 -m pip install -r requirements.txt
58
+ RUN python3.11 -m pip install -r requirements.txt
60
59
61
60
# Install the server package
62
61
RUN pip install -e .
You can’t perform that action at this time.
0 commit comments