-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update python version in dockerfile to use python 3.9 instead of 3.7
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ RUN mkdir -p /static \ | |
|
||
# ------------------------------------ | ||
|
||
FROM python:3.7-slim as py-builder | ||
FROM python:3.9-slim as py-builder | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends build-essential gcc libpq-dev libmariadb-dev | ||
|
@@ -35,7 +35,7 @@ RUN pip install --upgrade pip && \ | |
|
||
# ------------------------------------ | ||
|
||
FROM python:3.7-slim AS runtime | ||
FROM python:3.9-slim AS runtime | ||
LABEL maintainer="[email protected]" | ||
|
||
ENV PATH="/venv/bin:/lb/deploy:$PATH" \ | ||
|