forked from OpenZWave/python-openzwave
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split dockerfile run steps to use existing cache
- Loading branch information
Showing
3 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,8 @@ MAINTAINER bibi21000 <[email protected]> | |
ENV PYOZW_DOCKER 1 | ||
ADD . /home/pyozw | ||
WORKDIR /home/pyozw | ||
RUN apt-get update && \ | ||
apt-get dist-upgrade -y && \ | ||
apt-get install -y make sudo | ||
RUN apt-get update && apt-get dist-upgrade -y | ||
RUN apt-get install -y --no-install-recommends make sudo apt-utils | ||
RUN ls | ||
WORKDIR /home/pyozw/ | ||
RUN make docker-deps | ||
|