Skip to content

Commit

Permalink
update baseimage and make the frontend compatible to current library …
Browse files Browse the repository at this point in the history
…versions
  • Loading branch information
z-bsod authored and Hive committed Mar 25, 2022
1 parent a1439fd commit 4a6cc0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-nginx-rtmp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:buster
FROM debian:bullseye
MAINTAINER Chris <[email protected]>
VOLUME ["/usr/local/nginx/conf"]
EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/zomstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self):
# load configuration from config.yml file
if pathlib.Path("config.yml").is_file():
stream = open('config.yml', 'r')
self.configuration = yaml.load(stream)
self.configuration = yaml.safe_load(stream)
stream.close()
else:
print('missing configuration.')
Expand Down

0 comments on commit 4a6cc0d

Please sign in to comment.