diff --git a/frontend/.Dockerfile.swp b/frontend/.Dockerfile.swp deleted file mode 100644 index 7dc4d5c4..00000000 Binary files a/frontend/.Dockerfile.swp and /dev/null differ diff --git a/frontend/crawlab-ui/.dockerignore b/frontend/.dockerignore similarity index 100% rename from frontend/crawlab-ui/.dockerignore rename to frontend/.dockerignore diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 69c50de0..c799f06c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -12,7 +12,7 @@ WORKDIR /app RUN npm install -g pnpm # Copy application code -ADD crawlab-ui/* . +ADD ./crawlab-ui /app # Install project dependencies RUN pnpm install @@ -24,4 +24,4 @@ RUN pnpm run build FROM alpine:3.14 # Copy only the built artifacts from the build stage -COPY --from=build /app/apps/crawlab/dist /app/dist +COPY --from=build /app/dist /app/dist