-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update weewx version to 5.1.0 and adjust DWD installation script (pin…
…ned to old version to allow tests to pass). Added six to pip install. GH--283
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM python:3.10-buster | |
|
||
LABEL org.opencontainers.image.authors="David Baetge <[email protected]>" | ||
|
||
ARG WEEWX_VERSION="5.0.2" | ||
ARG WEEWX_VERSION="5.1.0" | ||
ARG WEEWX_UID=2749 | ||
ENV WEEWX_HOME="/home/weewx-data" | ||
RUN current_date=$(date +%Y-%m-%d\ %H:%M:%S) | ||
|
@@ -66,7 +66,7 @@ WORKDIR ${WEEWX_HOME} | |
RUN python3 -m venv ${WEEWX_HOME}/weewx-venv &&\ | ||
# shellcheck source=/dev/null | ||
. ${WEEWX_HOME}/weewx-venv/bin/activate &&\ | ||
python3 -m pip install --no-cache-dir weewx==${WEEWX_VERSION} | ||
python3 -m pip install --no-cache-dir weewx==${WEEWX_VERSION} six | ||
|
||
RUN . ${WEEWX_HOME}/weewx-venv/bin/activate &&\ | ||
weectl station create "${WEEWX_HOME}" --no-prompt \ | ||
|
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