-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use docker --pull by default, bump to python 3.10 (#386)
Use docker build --pull by default, unless NO_REFRESH=1 is set (this is the same param as in the primary OMT repo) Also, upgrade to the latest stable Python ver 3.10
- Loading branch information
Showing
3 changed files
with
17 additions
and
5 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 |
---|---|---|
|
@@ -31,7 +31,7 @@ RUN set -eux ;\ | |
|
||
|
||
# Build osmborder | ||
FROM python:3.8 as c-builder | ||
FROM python:3.10 as c-builder | ||
ARG OSMBORDER_REV=e3ae8f7a2dcdcd6dc80abab4679cb5edb7dc6fa5 | ||
|
||
RUN set -eux ;\ | ||
|
@@ -60,7 +60,7 @@ RUN set -eux ;\ | |
|
||
|
||
# Primary image | ||
FROM python:3.8-slim | ||
FROM python:3.10-slim | ||
LABEL maintainer="Yuri Astrakhan <[email protected]>" | ||
|
||
ARG PG_MAJOR=12 | ||
|
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
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