diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 8ae0216..ebf9de2 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -43,14 +43,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: Install Node.js dependencies - run: npm install - - name: Run webpack run: npx webpack diff --git a/Dockerfile b/Dockerfile index 11f17fc..cddc963 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,13 +22,6 @@ RUN apk add --no-cache mariadb-connector-c-dev RUN pip install --no-cache-dir -r requirements.txt RUN apk del build-deps -# Install Node.js and npm -RUN apk update -RUN apk add nodejs npm - -# Install npm dependencies -RUN npm install - # Run Webpack to build the assets RUN npx webpack