Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 53ec9f8

Browse files
authoredOct 14, 2022
Release 1.1.0b3 (#1361)
* Update __init__.py because it wasn't updated by previous bump2version * Add some comments about docker mechanisms that are disturbing release workflow * Bump to version 1.1.0b3 * Revert "Bump to 1.1.0b2, rebuild assets" This reverts commit 615eb52. * Add changelog entry for #1073 * Changelog entry for #1193
1 parent 7771d05 commit 53ec9f8

File tree

42 files changed

+246
-189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+246
-189
lines changed
 

‎Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ RUN cd /project
3333

3434
# It matters that the node environment is installed into the same
3535
# folder, i.e. /project where we will run the environment from
36+
# TODO: We don't want to update package-lock.json here, we
37+
# should use npm ci instead
3638
RUN npm install --package-lock-only &&\
3739
npm audit fix &&\
3840
npm install

‎docker-entrypoint.sh

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ pip install --upgrade -e ".[dev]"
1111
# npm install
1212

1313
cd /project
14+
15+
# TODO: This is a bad approach, it copies from the image which
16+
# may be outdated to the current git tree
1417
cp -r /project-readonly/sphinx_rtd_theme .
1518

1619
echo "Going to invoke: npm run $@"

0 commit comments

Comments
 (0)
Please sign in to comment.