Skip to content

Commit

Permalink
Trying to fix the Dockerfile, take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
caiosba committed Sep 18, 2023
1 parent b80a020 commit ba2911a
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 @@ -8,7 +8,9 @@ EXPOSE ${PRESTO_PORT}
WORKDIR /app
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -qq && apt-get install -y --no-install-recommends apt-transport-https
# Trying to avoid this error on CI:
# E: Problem executing scripts APT::Update::Post-Invoke 'rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true'
RUN mkdir -p /var/cache/apt/archives/partial
RUN apt-get update -qq && apt-get install -y --no-install-recommends ffmpeg cmake swig libavcodec-dev libavformat-dev git
RUN ln -s /usr/bin/ffmpeg /usr/local/bin/ffmpeg

Expand Down

0 comments on commit ba2911a

Please sign in to comment.