Skip to content

Commit

Permalink
upped to python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jsayles committed Jan 26, 2022
1 parent 9b74aef commit f2b73b4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile-nadine
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
############################################################
# Dockerfile to run a Django-based web application
# Based on an Ubuntu Image
# Dockerfile to run a Nadine Coworking Platform
############################################################

# Set the base image to use to python 2.7
FROM python:3.7
# Set the base image to use to python 3.10
FROM python:3.10.2-bullseye

# Set the file maintainer (your name - the file's author)
MAINTAINER Jacob Sayles
Expand Down Expand Up @@ -46,7 +45,7 @@ VOLUME ["$DOCKYARD_SRVHOME/media/", "$DOCKYARD_SRVHOME/logs/"]
COPY $DOCKYARD_SRC $DOCKYARD_SRVPROJ

# Install Python dependencies
RUN pip install --upgrade pip
RUN pip install --upgrade pip pipenv
RUN pipenv install

# Install the demo data
Expand Down

0 comments on commit f2b73b4

Please sign in to comment.