From 174f387b9dc8d5b8a2b8c680e1a864c0247cebca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Sun, 5 Dec 2021 15:05:21 +0100 Subject: [PATCH] Fix copy path --- runtimes/hello-world:latest/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/hello-world:latest/Dockerfile b/runtimes/hello-world:latest/Dockerfile index 6c12b55..16e0440 100644 --- a/runtimes/hello-world:latest/Dockerfile +++ b/runtimes/hello-world:latest/Dockerfile @@ -1,7 +1,7 @@ FROM node:14-alpine AS build WORKDIR /app -COPY . /app +COPY runtimes/hello-world:latest/. /app RUN set -ex \ # Build JS-Application