Fix docker image missing graphicsmagick runtime dependency

This commit is contained in:
Lomanic 2021-03-26 20:08:31 +01:00 committed by Cadence Ember
parent 6415564ccf
commit de05db09a7
No known key found for this signature in database
GPG Key ID: BC1C2C61CF521B17
1 changed files with 1 additions and 0 deletions

View File

@ -8,5 +8,6 @@ RUN npm install --no-optional
FROM node:14.5.0-alpine as app
WORKDIR /app
COPY --from=build /app /app
RUN apk add --no-cache graphicsmagick
EXPOSE 10407
CMD ["npm", "start"]