-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into django-storages-upgrade
- Loading branch information
Showing
1,022 changed files
with
27,566 additions
and
16,161 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
Validating CODEOWNERS rules …
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
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 was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -57,6 +57,7 @@ RUN apt-get update && \ | |
libpython3.8 \ | ||
libpython3.8-stdlib \ | ||
libmysqlclient21 \ | ||
pkg-config \ | ||
libssl1.1 \ | ||
libxmlsec1-openssl \ | ||
# lynx: Required by https://github.com/openedx/edx-platform/blob/b489a4ecb122/openedx/core/lib/html_to_text.py#L16 | ||
|
@@ -114,12 +115,19 @@ COPY requirements requirements | |
RUN pip install -r requirements/pip.txt | ||
RUN pip install -r requirements/edx/base.txt | ||
|
||
# Install node and node modules | ||
# Install node and npm | ||
RUN nodeenv /edx/app/edxapp/nodeenv --node=16.14.0 --prebuilt | ||
RUN npm install -g [email protected] | ||
|
||
# This script is used by an npm post-install hook. | ||
# We copy it into the image now so that it will be available when we run `npm install` in the next step. | ||
# The script itself will copy certain modules into some uber-legacy parts of edx-platform which still use RequireJS. | ||
COPY scripts/copy-node-modules.sh scripts/copy-node-modules.sh | ||
|
||
# Install node modules | ||
COPY package.json package.json | ||
COPY package-lock.json package-lock.json | ||
RUN npm set progress=false && npm install | ||
RUN npm set progress=false && npm ci | ||
|
||
# The builder-development stage is a temporary stage that installs python modules required for development purposes | ||
# The built artifacts from this stage are then copied to the development stage. | ||
|
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
Oops, something went wrong.