Skip to content

Commit

Permalink
demo_baseline: Update Dockerfile
Browse files Browse the repository at this point in the history
- Combine the RUN layer so as to reduce the number of layers in the docker image.

Signed-off-by: Chirag Shilwant <[email protected]>
  • Loading branch information
cshilwant authored Jan 17, 2024
1 parent 05c8446 commit 615b990
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions demo_baseline/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
ARG BASE_DISTRO=arm64v8/debian:stable-slim

FROM $BASE_DISTRO

LABEL org.opencontainers.image.source https://github.com/TexasInstruments/seva-adocker/demo_baseline

RUN export DEBIAN_FRONTEND=noninteractive; apt-get update
RUN export DEBIAN_FRONTEND=noninteractive; \
RUN export DEBIAN_FRONTEND=noninteractive; apt-get update && \
apt-get install -y --no-install-recommends git \
qt5-qmake qtbase5-dev qtwayland5 qtscript5-dev \
libqt5svg5-dev build-essential ca-certificates

0 comments on commit 615b990

Please sign in to comment.