aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Link <work@dmitrylink.com>2021-01-31 16:44:53 +0300
committerGitHub <noreply@github.com>2021-01-31 16:44:53 +0300
commitd1cef78cc6713d823994803b4699aea8d50a2963 (patch)
tree240472df45851ced6f1dcf98c7725acd9a33e350
parent35beab11cdccf09dc77917a795b033314e62a5b1 (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 /
-rw-r--r--Dockerfile6
1 files 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; \
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage