diff --git a/docker/ui/Dockerfile b/docker/ui/Dockerfile index f6efb23..21c1e29 100644 --- a/docker/ui/Dockerfile +++ b/docker/ui/Dockerfile @@ -4,10 +4,10 @@ WORKDIR /app RUN apk add --no-cache curl -COPY package.json package-lock.json* ./ +COPY docker/ui/package.json docker/ui/package-lock.json* ./ RUN npm ci 2>/dev/null || npm install -COPY . . +COPY docker/ui/ . EXPOSE 80