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

Update Alpine repository branch in Dockerfile. Closes #4

This commit is contained in:
Maksim Eltyshev 2019-12-12 13:05:55 +05:00
parent 2dbe98a1e5
commit ee509a80b4

View file

@ -3,8 +3,8 @@ FROM node:alpine AS server-builder
WORKDIR /app WORKDIR /app
RUN apk add vips-dev fftw-dev build-base python --no-cache \ RUN apk add vips-dev fftw-dev build-base python --no-cache \
--repository https://alpine.global.ssl.fastly.net/alpine/edge/community/ \ --repository https://alpine.global.ssl.fastly.net/alpine/v3.10/community/ \
--repository https://alpine.global.ssl.fastly.net/alpine/edge/main/ --repository https://alpine.global.ssl.fastly.net/alpine/v3.10/main/
COPY server/package.json server/package-lock.json ./ COPY server/package.json server/package-lock.json ./
@ -25,7 +25,7 @@ RUN npm run build
FROM node:alpine FROM node:alpine
RUN apk add bash vips --no-cache \ RUN apk add bash vips --no-cache \
--repository https://alpine.global.ssl.fastly.net/alpine/edge/community/ --repository https://alpine.global.ssl.fastly.net/alpine/v3.10/community/
WORKDIR /app WORKDIR /app