summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinsuki <428rinsuki+git@gmail.com>2020-05-08 17:45:59 +0900
committerGitHub <noreply@github.com>2020-05-08 17:45:59 +0900
commitf07564a452bab67abe7039aeb8bf17f53ca6718b (patch)
tree623b150d09969f2c6de04581362c74631c457da4
parentMerge pull request #6316 from syuilo/patch/autogen/v11 (diff)
downloadsharkey-f07564a452bab67abe7039aeb8bf17f53ca6718b.tar.gz
sharkey-f07564a452bab67abe7039aeb8bf17f53ca6718b.tar.bz2
sharkey-f07564a452bab67abe7039aeb8bf17f53ca6718b.zip
docker buildでyarn.lockを考慮してなかったのを修正 (#6330)
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 418be775b5..5962be670c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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