File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ <<<<<<< HEAD
1
2
# We use an Alpine base image in the compile-stage because of the build
2
3
# requirements for some of the Python requirements. When the python3-dev
3
4
# package is installed it will also install the python3 package which leaves us
7
8
# Docker image matches the version of the python3 package available on Alpine
8
9
# for consistency.
9
10
FROM docker.io/library/alpine:3.21 AS compile-stage
11
+ =======
12
+ # Official Docker images are in the form library/<app> while non-official
13
+ # images are in the form <user>/<app>.
14
+ FROM docker.io/library/python:3.13.2-alpine3.21 AS compile-stage
15
+ >>>>>>> e8ec18bb4cfbcdc26f704c489e98112d312d9bdb
10
16
11
17
# ##
12
18
# Unprivileged user variables
@@ -70,9 +76,15 @@ COPY src/Pipfile src/Pipfile.lock ./
70
76
RUN pipenv check --verbose \
71
77
&& pipenv install --clear --deploy --extra-pip-args "--no-cache-dir" --verbose
72
78
79
+ <<<<<<< HEAD
73
80
# The version of Python used here should match the version of the Alpine
74
81
# python3 package installed in the compile-stage.
75
82
FROM docker.io/library/python:3.12.9-alpine3.21 AS build-stage
83
+ =======
84
+ # Official Docker images are in the form library/<app> while non-official
85
+ # images are in the form <user>/<app>.
86
+ FROM docker.io/library/python:3.13.2-alpine3.21 AS build-stage
87
+ >>>>>>> e8ec18bb4cfbcdc26f704c489e98112d312d9bdb
76
88
77
89
# ##
78
90
# For a list of pre-defined annotation keys and value types see:
Original file line number Diff line number Diff line change @@ -18,4 +18,8 @@ docopt = ">=0.6.2"
18
18
llnl-scraper = {file = " https://api.github.com/repos/LLNL/scraper/tarball/536a72ce1ceb2e209281ff72a2ed59e735d45c33" }
19
19
20
20
[requires ]
21
+ <<<<<<< HEAD
21
22
python_full_version = " 3.12.9"
23
+ =======
24
+ python_full_version = " 3.13.2"
25
+ >>>>>>> e8ec18bb4cfbcdc26f704c489e98112d312d9bdb
You can’t perform that action at this time.
0 commit comments