Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.19 AS build
FROM python:3.13.7 AS build

# The rsync installation is required for the Makefile
RUN apt-get update && apt-get install -y rsync
Expand All @@ -7,7 +7,7 @@ RUN mkdir -p /kb/deployment/lib/biokbase
COPY . /tmp/catalog
RUN cd /tmp/catalog && make deploy-service deploy-server-control-scripts

FROM python:3.9.19
FROM python:3.13.7
# These ARGs values are passed in via the docker build command
ARG BUILD_DATE
ARG VCS_REF
Expand Down
Loading