I had build a local docker environment running GIMP. However when I try to run a gimp batch command I get the following error:
GIMP-Warning: The batch interpreter 'plug-in-script-fu-eval' is not available. Batch mode disabled.
Any idea what might cause this? It works locally but when I deploy it I get this error.
the command I try to run:
gimp --batch-interpreter plug-in-script-fu-eval -i --verbose -d -f -b 'MY COMMAND'
my current dockerfile:
GIMP-Warning: The batch interpreter 'plug-in-script-fu-eval' is not available. Batch mode disabled.
Any idea what might cause this? It works locally but when I deploy it I get this error.
the command I try to run:
gimp --batch-interpreter plug-in-script-fu-eval -i --verbose -d -f -b 'MY COMMAND'
my current dockerfile:
Code:
FROM debian:latest
RUN apt-get update
RUN apt-get install -y gimp --no-install-recommends
RUN apt-get install -y python
RUN rm -rf /var/lib/apt/lists/*
RUN apt-get update
RUN apt-get -qq install curl
RUN apt-get install -y aptitude
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash - && apt-get install -y nodejs && aptitude install -y npm
RUN apt-get update
# FROM node:lts
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN apt install -y imagemagick
EXPOSE 8080
CMD ["npm","start"]