File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ mqttwarn changelog
66in progress
77===========
88
9- - [build] Fix unwanted cache hits when automatically building Docker images
9+ - [build] Fix unwanted cache hits when automatically building Docker images. Thanks, Gergő!
1010
1111
12122021-06-03 0.21.0
1313=================
1414- [xmpp] Add slixmpp plugin and documentation. Thanks, Remi!
1515- [mysql] Fix unicode vs byte issue for Python 3. Thanks, Filip!
16- - [http] Fix to send whole message. Thanks, Gergo !
16+ - [http] Fix to send whole message. Thanks, Gergő !
1717- [slack] Replace ``slacker `` with ``slack-sdk ``. Thanks, mcdamo!
1818- [mysql] Fix specified port bug. Thanks, Hyman!
1919- [launch] Add new service ``launch ``. Flexible arguments for command,
Original file line number Diff line number Diff line change 77#
88FROM python:3.9-slim-buster
99
10- # Install mqttwarn
11- COPY . /src
12- RUN pip install /src
13-
1410# Create /etc/mqttwarn
1511RUN mkdir -p /etc/mqttwarn
1612WORKDIR /etc/mqttwarn
@@ -28,5 +24,9 @@ VOLUME ["/etc/mqttwarn"]
2824# Set default configuration path
2925ENV MQTTWARNINI="/etc/mqttwarn/mqttwarn.ini"
3026
27+ # Install mqttwarn
28+ COPY . /src
29+ RUN pip install /src
30+
3131# Invoke program
3232CMD mqttwarn
You can’t perform that action at this time.
0 commit comments