Skip to content

Commit

Permalink
upgrading to python 3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Nov 18, 2022
1 parent 6241e2f commit c904fbf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# and runs main which starts the web server

# leverage the renci python base image
FROM python:3.10-slim
FROM python:3.11-slim

# update the image base
RUN apt-get update && apt-get -y upgrade
Expand All @@ -37,4 +37,5 @@ WORKDIR /repo/APSVIZ-Settings
COPY . .

# start the service entry point
ENTRYPOINT ["python", "main.py"]
#ENTRYPOINT ["python", "main.py"]
CMD ["/bin/sh", "-c", "while true; do date; sleep 3600; done"]

0 comments on commit c904fbf

Please sign in to comment.