Skip to content

Commit

Permalink
add mongo-tools to base-php image
Browse files Browse the repository at this point in the history
mongo-tools is required for the backup/restore project command being added to the PHP application
  • Loading branch information
megahirt committed May 16, 2024
1 parent 8155367 commit 29e0f02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/base-php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ FROM php:7.4-apache
# unzip - used by LF application for unzipping lexicon uploads
# curl - used by LF application
# ffmpeg - used by LF audio upload method
RUN apt-get update && apt-get -y install p7zip-full unzip curl tini ffmpeg && rm -rf /var/lib/apt/lists/*
# mongo-tools - used by LF backup/restore project commands
RUN apt-get update && apt-get -y install p7zip-full mongo-tools unzip curl tini ffmpeg && rm -rf /var/lib/apt/lists/*

# see https://github.com/mlocati/docker-php-extension-installer
# PHP extensions required by the LF application
Expand Down

0 comments on commit 29e0f02

Please sign in to comment.