-
Notifications
You must be signed in to change notification settings - Fork 13
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 #169 from simonsobs/develop
Release v0.2.0
- Loading branch information
Showing
49 changed files
with
4,927 additions
and
249 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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# CHWP Agent | ||
|
||
# Use socs base image | ||
FROM socs:latest | ||
|
||
# Set the working directory to registry directory | ||
WORKDIR /app/socs/agents/chwp/ | ||
|
||
# Copy this agent into the app/agents directory | ||
COPY . . | ||
|
||
# Run registry on container startup | ||
ENTRYPOINT ["dumb-init", "python3", "-u", "hwpbbb_agent.py"] | ||
|
||
# Sensible default arguments | ||
CMD ["--site-hub=ws://crossbar:8001/ws", \ | ||
"--site-http=http://crossbar:8001/call"] | ||
|
||
EXPOSE 8080/udp |
Oops, something went wrong.