diff --git a/Containerfile b/Containerfile index 2dd31fe..f4ca463 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,5 @@ FROM docker.io/library/node AS build +WORKDIR /app COPY . . ENV ASTRO_TELEMETRY_DISABLED=true RUN npm install @@ -8,5 +9,5 @@ FROM git.swablab.de/swablab/documents AS documents FROM docker.io/nginxinc/nginx-unprivileged COPY ./nginx.conf /etc/nginx/conf.d/default.conf -COPY --from=build ./dist /usr/share/nginx/html +COPY --from=build /app/dist /usr/share/nginx/html COPY --from=documents / /usr/share/nginx/html/docs \ No newline at end of file