mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
Fix file attach from clipboard when copy from browser. Closes #96
This commit is contained in:
parent
4a0a0abaef
commit
560c2856e6
7 changed files with 7914 additions and 14560 deletions
12
Dockerfile
12
Dockerfile
|
@ -8,7 +8,7 @@ RUN npm install
|
|||
|
||||
COPY client .
|
||||
|
||||
RUN npm run build
|
||||
RUN npm install npm@latest --global && npm run build
|
||||
|
||||
FROM node:alpine
|
||||
|
||||
|
@ -17,6 +17,7 @@ WORKDIR /app
|
|||
COPY server .
|
||||
COPY docker-start.sh start.sh
|
||||
|
||||
ARG ALPINE_VERSION=3.12
|
||||
ARG VIPS_VERSION=8.10.2
|
||||
|
||||
RUN apk -U upgrade \
|
||||
|
@ -24,16 +25,16 @@ RUN apk -U upgrade \
|
|||
bash giflib glib lcms2 libexif \
|
||||
libgsf libjpeg-turbo libpng librsvg libwebp \
|
||||
orc pango tiff \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/latest-stable/community/ \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/latest-stable/main/ \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/v${ALPINE_VERSION}/community/ \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/v${ALPINE_VERSION}/main/ \
|
||||
--no-cache \
|
||||
&& apk add \
|
||||
build-base giflib-dev glib-dev lcms2-dev libexif-dev \
|
||||
libgsf-dev libjpeg-turbo-dev libpng-dev librsvg-dev libwebp-dev \
|
||||
orc-dev pango-dev tiff-dev \
|
||||
--virtual vips-dependencies \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/latest-stable/community/ \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/latest-stable/main/ \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/v${ALPINE_VERSION}/community/ \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/v${ALPINE_VERSION}/main/ \
|
||||
--no-cache \
|
||||
&& wget -O- https://github.com/libvips/libvips/releases/download/v${VIPS_VERSION}/vips-${VIPS_VERSION}.tar.gz | tar xzC /tmp \
|
||||
&& cd /tmp/vips-${VIPS_VERSION} \
|
||||
|
@ -42,6 +43,7 @@ RUN apk -U upgrade \
|
|||
&& make install-strip \
|
||||
&& cd $OLDPWD \
|
||||
&& rm -rf /tmp/vips-${VIPS_VERSION} \
|
||||
&& npm install npm@latest --global \
|
||||
&& npm install --production \
|
||||
&& apk del vips-dependencies --purge \
|
||||
&& chmod +x start.sh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue