From d1cef78cc6713d823994803b4699aea8d50a2963 Mon Sep 17 00:00:00 2001 From: Dmitry Link Date: Sun, 31 Jan 2021 16:44:53 +0300 Subject: Fix docker build error (#20) When using COPY with more than one source file, the destination must be a directory and end with a / --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 37ff07c..3944c64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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; \ -- cgit v1.2.3