-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from StuffAnThings/develop
v3.1.4
- Loading branch information
Showing
10 changed files
with
307 additions
and
133 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
FROM hotio/base:alpine | ||
FROM python:3.9-alpine | ||
|
||
# install packages | ||
RUN apk add --no-cache gcc g++ libxml2-dev libxslt-dev shadow bash curl wget jq grep sed coreutils findutils unzip p7zip ca-certificates | ||
|
||
COPY requirements.txt / | ||
|
||
RUN apk add --no-cache py3-pip | ||
COPY --chown=hotio:users requirements.txt / | ||
RUN echo "**** install python packages ****" \ | ||
&& pip3 install --user --no-cache-dir --upgrade --requirement /requirements.txt \ | ||
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \ | ||
&& rm -rf /requirements.txt /tmp/* /var/tmp/* | ||
|
||
COPY --chown=hotio:users . "${APP_DIR}" | ||
WORKDIR ${APP_DIR} | ||
COPY . /app | ||
WORKDIR /app | ||
VOLUME /config | ||
ENTRYPOINT ["python3", "qbit_manage.py"] |
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.1.3 | ||
3.1.4 |
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
Oops, something went wrong.