Skip to content

Commit

Permalink
remove apt-get upgrade from dockerfile (#43)
Browse files Browse the repository at this point in the history
For some reason the docker container fails to build on apt-get upgrade only on the EC2 instance. It ttrys to install and set up python3.5 and says it's not configured. I started looking into how to do this, but I don't think we actually need to run this upgrade, so just removed it and everything built and runs fine.
  • Loading branch information
austensen authored Aug 2, 2023
1 parent 5a017f8 commit 3cee336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ RUN apt-get update && apt-get install -y \
wget \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update && apt-get upgrade -y \
RUN apt-get update \
&& curl https://dl.xpdfreader.com/xpdf-tools-linux-${XPDF_VERSION}.tar.gz > /xpdf.tar.gz \
&& tar -zxvf /xpdf.tar.gz \
&& cp xpdf-tools-linux-${XPDF_VERSION}/bin64/pdftotext /bin \
Expand Down

0 comments on commit 3cee336

Please sign in to comment.