Skip to content

Commit

Permalink
updated api version for kustomize in fix in refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Aug 7, 2024
1 parent b082226 commit 09339b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/.CONTAINER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.5
1.0.6
2 changes: 2 additions & 0 deletions api/Dockerfile-api
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ EXPOSE 3001

WORKDIR /app/api

RUN python3 -c "import os;files=os.listdir();import shutil;[shutil.rmtree(f) if '__pycache__' in f else None for f in files]"

# RUN pip install --upgrade google-cloud-storage

CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "3001", "--reload"]
Expand Down
2 changes: 1 addition & 1 deletion kustomize/overlays/biochecknet/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace: biochecknet

images:
- name: ghcr.io/biosimulators/bio-check-api
newTag: 1.0.5
newTag: 1.0.6
- name: ghcr.io/biosimulators/bio-check-worker
newTag: 1.0.8
- name: mongo
Expand Down
2 changes: 2 additions & 0 deletions worker/Dockerfile-worker
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ RUN pip uninstall biosimulators-utils -y \

WORKDIR /app/worker

RUN python3 -c "import os;files=os.listdir();import shutil;[shutil.rmtree(f) if '__pycache__' in f else None for f in files]"

CMD ["python3", "main.py"]

0 comments on commit 09339b5

Please sign in to comment.