1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

Fix Docker image, update dependencies

This commit is contained in:
Maksim Eltyshev 2020-04-29 04:49:39 +05:00
parent d264382fda
commit c2a16459df
7 changed files with 1480 additions and 1262 deletions

View file

@ -1,4 +1,4 @@
FROM node:alpine AS server-builder
FROM node:12-alpine AS server-builder
WORKDIR /app
@ -10,7 +10,7 @@ COPY server/package.json server/package-lock.json ./
RUN npm i --prod --silent
FROM node:alpine AS client-builder
FROM node:12-alpine AS client-builder
WORKDIR /app
@ -22,7 +22,7 @@ COPY client .
RUN npm run build
FROM node:alpine
FROM node:12-alpine
RUN apk add bash vips --no-cache \
--repository https://alpine.global.ssl.fastly.net/alpine/v3.10/community/