Skip to content

Commit

Permalink
Merge pull request #50 from faberNovel/feature/crcmod
Browse files Browse the repository at this point in the history
Use compiled crcmod
  • Loading branch information
vincentbrison authored May 11, 2020
2 parents f2d81c9 + 6aa7ccb commit 8598c14
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM ubuntu:20.04
## Set timezone to UTC by default
RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime


## Use unicode
RUN apt-get update && apt-get -y install locales && \
locale-gen en_US.UTF-8 || true
Expand All @@ -20,7 +19,11 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
libreadline-dev \
unzip \
# needed by google cloud sdk
python
gcc \
python3 \
python3-dev \
python3-setuptools \
python3-pip

## Clean dependencies
RUN apt-get clean
Expand Down Expand Up @@ -53,6 +56,8 @@ RUN mkdir -p ${gcloud_home} && \
tar -C ${gcloud_home} -xvf /tmp/gcloud-sdk.tar.gz && \
${gcloud_install_script}
ENV PATH=${gcloud_bin}:${PATH}
RUN pip3 uninstall crcmod
RUN pip3 install --no-cache-dir -U crcmod

## Install Android SDK
ARG sdk_version=commandlinetools-linux-6200805_latest.zip
Expand Down

0 comments on commit 8598c14

Please sign in to comment.