Skip to content

Commit

Permalink
Merge pull request #62 from PeARSearch/nandajavarma-patch-1
Browse files Browse the repository at this point in the history
Remove sudo from dockerfile
  • Loading branch information
minimalparts authored Jul 15, 2024
2 parents 1054bcf + 53eaf20 commit 243f88e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /app
COPY requirements.txt /tmp/
RUN pip install --requirement /tmp/requirements.txt

RUN sudo apt-get install -y poppler-utils
RUN apt-get install -y poppler-utils

# Additionally, install Gunicorn
RUN pip install gunicorn
Expand All @@ -25,4 +25,4 @@ COPY . /app
RUN chmod +x /app/deployment/entrypoint.sh

# Set the entrypoint script to be executed
ENTRYPOINT ["/app/deployment/entrypoint.sh"]
ENTRYPOINT ["/app/deployment/entrypoint.sh"]

0 comments on commit 243f88e

Please sign in to comment.