Skip to content

Commit

Permalink
environment.yml properly referenced
Browse files Browse the repository at this point in the history
  • Loading branch information
iquasere committed Dec 29, 2023
1 parent 401b113 commit 9eb6a9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cicd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM continuumio/miniconda3:23.3.1-0

RUN git clone https://github.com/iquasere/reCOGnizer.git \
&& conda install -c conda-forge mamba libarchive=3.6.2=h039dbb9_1 \
&& mamba env update --file reCOGnizer/envs/environment.yml --name base \
&& bash reCOGnizer/envs/ci_build.sh \
&& mamba env update --file reCOGnizer/cicd/environment.yml --name base \
&& bash reCOGnizer/cicd/ci_build.sh \
&& conda clean --all -y

CMD [ "python", "share/recognizer.py" ]
2 changes: 1 addition & 1 deletion recognizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import xml.etree.ElementTree as ET
import re

__version__ = '1.10.0'
__version__ = '1.10.1'

print_commands = False # for debugging purposes, can be changed with --debug parameter

Expand Down

0 comments on commit 9eb6a9b

Please sign in to comment.