这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions node/12-user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ RUN pyenv install 3.7.4 && \
pyenv global 3.7.4 && \
python3 -m pip install --upgrade pip setuptools

# Install gcp-uploader and gcp-releasetool and their dependencies.
COPY requirements.txt requirements.txt
RUN python3 -m pip install --require-hashes -r requirements.txt

# Setup Cloud SDK
WORKDIR /home/node
ENV CLOUD_SDK_VERSION=261.0.0 \
Expand Down
367 changes: 367 additions & 0 deletions node/12-user/requirements.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions node/14-user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ RUN pyenv install 3.7.4 && \
pyenv global 3.7.4 && \
python3 -m pip install --upgrade pip setuptools

# Install gcp-uploader and gcp-releasetool and their dependencies.
COPY requirements.txt requirements.txt
RUN python3 -m pip install --require-hashes -r requirements.txt

# Setup Cloud SDK
WORKDIR /home/node
ENV CLOUD_SDK_VERSION=303.0.0 \
Expand Down
367 changes: 367 additions & 0 deletions node/14-user/requirements.txt

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions node/16-user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,14 @@ RUN echo 'export PATH="/home/node/.pyenv/bin:$PATH"' >> ~/.profile && \
ENV PATH="/home/node/.pyenv/bin:/home/node/.pyenv/shims:${PATH}"

# Install python
RUN pyenv install 3.7.1 && \
pyenv global 3.7.1 && \
RUN pyenv install 3.7.4 && \
pyenv global 3.7.4 && \
python3 -m pip install --upgrade pip setuptools

# Install gcp-uploader and gcp-releasetool and their dependencies.
COPY requirements.txt requirements.txt
RUN python3 -m pip install --require-hashes -r requirements.txt

# Setup Cloud SDK
WORKDIR /home/node
ENV CLOUD_SDK_VERSION=261.0.0 \
Expand Down
367 changes: 367 additions & 0 deletions node/16-user/requirements.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions node/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
gcp-docuploader
gcp-releasetool
importlib-metadata
typing-extensions