Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
chore(Dockerfile): apt-get update before installing (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
oremj authored Jul 22, 2016
1 parent 5548eb8 commit 5c6cb3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ ADD . /app
WORKDIR /app

RUN \
apt-get update && \
apt-get install -y -qq libexpat1-dev gcc libssl-dev libffi-dev && \
make clean && \
pip install -r pypy-requirements.txt && \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.python27
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ COPY . /app
WORKDIR /app

RUN \
apt-get update && \
apt-get install -y -qq libexpat1-dev gcc libssl-dev libffi-dev && \
make clean && \
pip install -r requirements.txt && \
Expand Down

0 comments on commit 5c6cb3c

Please sign in to comment.