Skip to content

Commit

Permalink
fix ha not starting in devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
tlskinneriv committed Jul 14, 2023
1 parent 22be303 commit ba36a9d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ RUN ./setup.sh

# WORKDIR /workspaces

# # Install Python dependencies from requirements
# COPY requirements.txt ./
# Install Python dependencies from requirements
COPY .devcontainer/requirements.txt ./
# COPY homeassistant/package_constraints.txt homeassistant/package_constraints.txt
# RUN pip3 install -r requirements.txt
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/
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
1 change: 1 addition & 0 deletions .devcontainer/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
git+https://github.com/boto/botocore
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning].
### Fixed

- Lightning Strike Distance fixed to be `distance` device class
- Housekeeping: updated devcontainer configuation for Python 3.11

## [1.1.2] - 2023-06-16

Expand Down

0 comments on commit ba36a9d

Please sign in to comment.