-
Notifications
You must be signed in to change notification settings - Fork 7
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 #6 from patrickelectric/improve_things
Some new updates
- Loading branch information
Showing
2 changed files
with
17 additions
and
5 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 |
---|---|---|
@@ -1,11 +1,25 @@ | ||
FROM python:3.9-slim-buster | ||
FROM python:3.9-slim-bullseye | ||
|
||
# Create default user folder | ||
RUN mkdir -p /home/pi | ||
|
||
# Install gstreamer | ||
COPY ./scripts/install_gst.sh /install_gst.sh | ||
RUN GST_VERSION=1.17.2 ./install_gst.sh && rm /install_gst.sh | ||
RUN GST_VERSION=1.18.5 ./install_gst.sh && rm /install_gst.sh | ||
|
||
# Install necessary tools for basic usage | ||
RUN apt install -y --no-install-recommends file locate tmux unzip nano htop iputils-ping watch wget iproute2 | ||
RUN apt install -y --no-install-recommends \ | ||
dnsutils \ | ||
file \ | ||
htop \ | ||
i2c-tools \ | ||
iproute2 \ | ||
iputils-ping \ | ||
locate \ | ||
lsof \ | ||
nano \ | ||
sshpass \ | ||
tmux \ | ||
unzip \ | ||
watch \ | ||
wget \ |
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