-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Label images to show them in repository
- Loading branch information
1 parent
fa72f57
commit 4cc5020
Showing
1 changed file
with
4 additions
and
0 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ RUN apk add git && \ | |
|
||
FROM python:alpine AS client | ||
LABEL maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source https://github.com/janspeller/BW3-Core | ||
|
||
# for RTL for MM | ||
RUN apk add libusb-dev libpulse | ||
|
@@ -34,6 +35,9 @@ WORKDIR /opt/boswatch | |
CMD python3 /opt/boswatch/bw_client.py -c client.yaml | ||
|
||
FROM python:alpine AS server | ||
LABEL maintainer="[email protected]"\ | ||
LABEL org.opencontainers.image.source https://github.com/janspeller/BW3-Core | ||
|
||
RUN pip3 install pyyaml | ||
COPY --from=boswatch /opt/boswatch/ /opt/boswatch/ | ||
WORKDIR /opt/boswatch | ||
|