Skip to content

Commit

Permalink
Merge pull request #264 from zfouts/security_patch_upstream_containers
Browse files Browse the repository at this point in the history
Support upgrading base upstream image.
  • Loading branch information
QuantumEntangledAndy authored Jun 24, 2024
2 parents 3f7a231 + 6572577 commit b37b3ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RUN echo "TARGETPLATFORM: ${TARGETPLATFORM}"; \
else \
echo "Building from scratch"; \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
build-essential \
openssl \
Expand Down Expand Up @@ -58,6 +59,7 @@ LABEL maintainer="$OWNER"

# hadolint ignore=DL3008
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
openssl \
dnsutils \
Expand All @@ -83,9 +85,9 @@ RUN gst-inspect-1.0; \
"/usr/local/bin/neolink" --version && \
mkdir -m 0700 /root/.config/


ENV NEO_LINK_MODE="rtsp" NEO_LINK_PORT=8554

CMD /usr/local/bin/neolink "${NEO_LINK_MODE}" --config /etc/neolink.toml
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE ${NEO_LINK_PORT}

0 comments on commit b37b3ee

Please sign in to comment.