File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
app/scripts/nmr-respredict Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 6262 flake8 --per-file-ignores="__init__.py:F401" --ignore E402,E501,W503 $(git ls-files 'app/*.py') .
6363 - name : Run test
6464 run : |
65- python3 -m pytest -p no:warnings --ignore=lwreg/lwreg/test-cli.py --ignore=lwreg/lwreg/test_lwreg.py
65+ python3 -m pytest -p no:warnings --ignore=lwreg/lwreg/test-cli.py --ignore=lwreg/lwreg/test_lwreg.py --ignore=lwreg/lwreg/test_dbutils.py
Original file line number Diff line number Diff line change 1- FROM continuumio/miniconda3 AS nmr-respredict-ms
1+ FROM continuumio/miniconda3:24.1.2-0 AS nmr-respredict-ms
22
33ENV PYTHON_VERSION=3.10
44
55# Install runtime dependencies
66RUN apt-get update && \
7- apt-get install -y software-properties-common && \
8- apt-get update -y && \
9- apt-get install -y curl && \
7+ apt-get install -y --no-install-recommends \
8+ software-properties-common \
9+ curl && \
10+ apt-get clean && \
11+ rm -rf /var/lib/apt/lists/* && \
1012 conda update -n base -c defaults conda
1113
1214RUN conda install -c conda-forge python>=PYTHON_VERSION
You can’t perform that action at this time.
0 commit comments