Skip to content

Commit

Permalink
udpate dockerfile and process script
Browse files Browse the repository at this point in the history
  • Loading branch information
SD3004 committed May 4, 2022
1 parent eefcd36 commit 901f69d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN python -m pip install --user -U pip
COPY --chown=algorithm:algorithm requirements.txt /opt/algorithm/

COPY --chown=algorithm:algorithm model/ /opt/algorithm/model/
COPY --chown=algorithm:algorithm utils/ /opt/algorithm/util/
COPY --chown=algorithm:algorithm utils/ /opt/algorithm/utils/
COPY --chown=algorithm:algorithm weights/ /opt/algorithm/checkpoints/
COPY --chown=algorithm:algorithm process.py /opt/algorithm/

Expand Down
2 changes: 1 addition & 1 deletion process.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import json
from glob import glob

execute_in_docker = False
execute_in_docker = True

class Slcn_algorithm(ClassificationAlgorithm):
def __init__(self):
Expand Down

0 comments on commit 901f69d

Please sign in to comment.