Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanLav committed Feb 18, 2025
1 parent a59c8ae commit e736a02
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker/opencv.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ FROM ghcr.io/actions/actions-runner:latest
ENV DEBIAN_FRONTEND=noninteractive

# Install OpenCV dependencies
RUN apt-get update && apt-get install -y \
RUN cat /etc/os-release && \
apt-get update -y && \
apt-cache policy libjpeg-dev libgtk-3-dev && \
apt-get install -y \
libjpeg-dev \
libtiff-dev \
libpng-dev \
Expand All @@ -15,7 +18,8 @@ RUN apt-get update && apt-get install -y \
libx264-dev \
libgtk-3-dev \
libatlas-base-dev \
gfortran
gfortran \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /tmp

Expand Down

0 comments on commit e736a02

Please sign in to comment.