Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #576

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:latest

LABEL org.opencontainers.image.title="Homebridge in Docker"
LABEL org.opencontainers.image.description="Official Homebridge Docker Image"
Expand All @@ -11,10 +11,10 @@ LABEL org.opencontainers.image.licenses="GPL-3.0"
ARG HOMEBRIDGE_APT_PKG_VERSION
ARG FFMPEG_VERSION

ENV HOMEBRIDGE_APT_PKG_VERSION=${HOMEBRIDGE_APT_PKG_VERSION:-v1.2.1}
ENV FFMPEG_VERSION=${FFMPEG_VERSION:-v2.1.1}
ENV HOMEBRIDGE_APT_PKG_VERSION=${HOMEBRIDGE_APT_PKG_VERSION:-v1.3.10}
ENV FFMPEG_VERSION=${FFMPEG_VERSION:-v2.1.7}

ENV S6_OVERLAY_VERSION=3.1.1.2 \
ENV S6_OVERLAY_VERSION=3.2.0.2 \
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \
S6_KEEP_ENV=1 \
ENABLE_AVAHI=1 \
Expand All @@ -31,9 +31,9 @@ RUN set -x \
libatomic1 apt-transport-https apt-utils jq openssl sudo nano net-tools \
&& locale-gen en_US.UTF-8 \
&& ln -snf /usr/share/zoneinfo/Etc/GMT /etc/localtime && echo Etc/GMT > /etc/timezone \
&& apt-get install -y python3 python3-pip python3-setuptools git make g++ libnss-mdns \
&& apt-get install -y python3 python3-pip pipx python3-setuptools git make g++ libnss-mdns \
avahi-discover libavahi-compat-libdnssd-dev python3-venv python3-dev \
&& pip3 install tzupdate \
&& pipx install tzupdate \
&& chmod 4755 /bin/ping \
&& apt-get clean \
&& rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* \
Expand Down
Loading