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