Skip to content

Commit

Permalink
fix(Dockerfile): Add mime-support apt package at dockerfile to resolv…
Browse files Browse the repository at this point in the history
…e mimetype response error
  • Loading branch information
iknowright committed Feb 18, 2024
1 parent d3d5005 commit 64fac1a
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 @@ -29,7 +29,7 @@ ENV PATH /home/docker/.local/bin:$PATH
# Infrastructure tools
# gettext is used for django to compile .po to .mo files.
RUN apt-get update
RUN apt-get install gettext libpq-dev gcc -y
RUN apt-get install gettext libpq-dev mime-support -y

# APP directory setup
RUN adduser --system --disabled-login docker \
Expand Down

0 comments on commit 64fac1a

Please sign in to comment.