Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
b04b314a
Unverified
Commit
b04b314a
authored
3 years ago
by
Stefan Agner
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Extend Docker build caching opportunities (#60661)
parent
95286791
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+12
-3
12 additions, 3 deletions
Dockerfile
Dockerfile.dev
+5
-4
5 additions, 4 deletions
Dockerfile.dev
with
17 additions
and
7 deletions
Dockerfile
+
12
−
3
View file @
b04b314a
...
...
@@ -7,12 +7,21 @@ ENV \
WORKDIR
/usr/src
## Setup Home Assistant
## Setup Home Assistant Core dependencies
COPY
requirements.txt homeassistant/
COPY
homeassistant/package_constraints.txt homeassistant/homeassistant/
RUN
\
pip3
install
--no-cache-dir
--no-index
--only-binary
=
:all:
--find-links
"
${
WHEELS_LINKS
}
"
\
-r
homeassistant/requirements.txt
COPY
requirements_all.txt homeassistant/
RUN
\
pip3
install
--no-cache-dir
--no-index
--only-binary
=
:all:
--find-links
"
${
WHEELS_LINKS
}
"
\
-r
homeassistant/requirements_all.txt
## Setup Home Assistant Core
COPY
. homeassistant/
RUN
\
pip3
install
--no-cache-dir
--no-index
--only-binary
=
:all:
--find-links
"
${
WHEELS_LINKS
}
"
\
-r
homeassistant/requirements_all.txt
\
&&
pip3
install
--no-cache-dir
--no-index
--only-binary
=
:all:
--find-links
"
${
WHEELS_LINKS
}
"
\
-e
./homeassistant
\
&&
python3
-m
compileall homeassistant/homeassistant
...
...
This diff is collapsed.
Click to expand it.
Dockerfile.dev
+
5
−
4
View file @
b04b314a
...
...
@@ -30,11 +30,12 @@ RUN git clone --depth 1 https://github.com/home-assistant/hass-release \
WORKDIR /workspaces
# Install Python dependencies from requirements
COPY requirements.txt
requirements_test.txt requirements_test_pre_commit.txt
./
COPY requirements.txt ./
COPY homeassistant/package_constraints.txt homeassistant/package_constraints.txt
RUN pip3 install -r requirements.txt \
&& pip3 install -r requirements_test.txt \
&& rm -rf requirements.txt requirements_test.txt requirements_test_pre_commit.txt homeassistant/
RUN pip3 install -r requirements.txt
COPY requirements_test.txt requirements_test_pre_commit.txt ./
RUN pip3 install -r requirements_test.txt
RUN rm -rf requirements.txt requirements_test.txt requirements_test_pre_commit.txt homeassistant/
# Set the default shell to bash instead of sh
ENV SHELL /bin/bash
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment