cms icon indicating copy to clipboard operation
cms copied to clipboard

bug on running the docker-compose up

Open Ankur1493 opened this issue 1 year ago • 1 comments

There was an trailing comma, which was causing errors while running docker-compose up command, so this is just to remove it image Screenshot from 2024-05-14 20-58-57

Checklist before requesting a review

  • [x] I have performed a self-review of my code
  • [x] I assure there is no similar/duplicate pull request regarding same issue

Ankur1493 avatar May 14 '24 15:05 Ankur1493

@Ankur1493 This doesn't fix the docker-compose up issue though

image

victorchrollo14 avatar May 14 '24 17:05 victorchrollo14

issue is package node-gyp which depend on Python which does not exists hence eror

add these to docker file before running npm install

# Build dependencies
RUN apk add make gcc g++ python3

# install node packages

developerTested avatar May 22 '24 10:05 developerTested