Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install doc uploader and releasetool with hashes #227

Merged
merged 2 commits into from Aug 22, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions node/12-user/Dockerfile
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
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
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
@@ -0,0 +1,4 @@
gcp-docuploader
gcp-releasetool
importlib-metadata
typing-extensions