1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-14 20:45:12 +02:00

docker buildでyarn.lockを考慮してなかったのを修正 (#6330)

This commit is contained in:
rinsuki
2020-05-08 17:45:59 +09:00
committed by GitHub
parent 37419886a1
commit f07564a452

View File

@@ -22,7 +22,7 @@ RUN apk add --no-cache \
python \
zlib-dev
COPY package.json ./
COPY package.json yarn.lock ./
RUN yarn install
COPY . ./
RUN yarn build