diff options
| author | rinsuki <428rinsuki+git@gmail.com> | 2020-05-08 17:45:59 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-08 17:45:59 +0900 |
| commit | f07564a452bab67abe7039aeb8bf17f53ca6718b (patch) | |
| tree | 623b150d09969f2c6de04581362c74631c457da4 | |
| parent | Merge pull request #6316 from syuilo/patch/autogen/v11 (diff) | |
| download | sharkey-f07564a452bab67abe7039aeb8bf17f53ca6718b.tar.gz sharkey-f07564a452bab67abe7039aeb8bf17f53ca6718b.tar.bz2 sharkey-f07564a452bab67abe7039aeb8bf17f53ca6718b.zip | |
docker buildでyarn.lockを考慮してなかったのを修正 (#6330)
| -rw-r--r-- | Dockerfile | 2 |
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 |