diff options
| author | Dmitry Link <work@dmitrylink.com> | 2021-01-31 16:44:53 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-31 16:44:53 +0300 |
| commit | d1cef78cc6713d823994803b4699aea8d50a2963 (patch) | |
| tree | 240472df45851ced6f1dcf98c7725acd9a33e350 /Dockerfile | |
| parent | 35beab11cdccf09dc77917a795b033314e62a5b1 (diff) | |
Fix docker build error (#20)
When using COPY with more than one source file, the destination
must be a directory and end with a /
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,9 +8,9 @@ RUN apk add nodejs npm git; \ COPY res ./res COPY src ./src COPY user ./user -COPY build-*.hxml . -COPY package*.json . -COPY default-config.json . +COPY build-*.hxml ./ +COPY package*.json ./ +COPY default-config.json ./ RUN npm ci; \ haxelib install all --always; \ |
