Skip to content

Commit

Permalink
Update dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsoulanille committed Mar 2, 2021
1 parent f9dc556 commit d2ae7b6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dockers/release-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ RUN apt-get update -qqy && apt-get install -qqy \
lsb-release \
openssh-client \
git \
gnupg && \
gnupg
file && \
pip3 install -U crcmod && \
export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)" && \
echo "deb https://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" > /etc/apt/sources.list.d/google-cloud-sdk.list && \
Expand All @@ -36,3 +37,6 @@ RUN npm install -g yarn

# Install virtualenv
RUN pip3 install virtualenv

# Install absl
RUN pip3 install absl-py
16 changes: 16 additions & 0 deletions dockers/wasm-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,19 @@

# Install yarn
RUN npm install -g yarn

RUN apt-get update -qqy && apt-get install -qqy \
curl \
gcc \
python \
python3 \
python3-setuptools \
python3-dev \
python3-pip \
apt-transport-https \
lsb-release \
openssh-client \
git \
gnupg \
file && \
pip3 install -U absl-py

0 comments on commit d2ae7b6

Please sign in to comment.