Git Lab CI for docker build enabled! You can enable it using .gitlab-ci.yml in your project. Check file template at https://gitlab.bio.di.uminho.pt/snippets/5

Commit c853fd71 authored by Davide Lagoa's avatar Davide Lagoa

minor bug fixed

parent f613c89b
FROM python:3-onbuild
COPY . /usr/src/app
COPY ./code /home
WORKDIR /workdir
EXPOSE 80
CMD ["python", "/home/workersManager.py"]
......@@ -66,8 +66,6 @@ def run():
shutil.move(SUBMISSIONS_PATH + submissionID, processingPath)
processingPath = processingPath.replace('/', '$')
logging.info("Sending request to start to " + str(workerID))
logging.info("coiso -> " + protocol)
logging.info("coiso2 -> " + str(starter))
logging.info(
protocol + str(workerID) + ":" + str(port) + starter + "/" + processingPath + "/" + RESULTS_PATH.replace('/',
'$') + submissionID)
......@@ -92,7 +90,7 @@ def run():
if os.path.exists(path):
shutil.rmtree(path)
time.sleep(5)
time.sleep(5)
def getNextInQueue(l):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment