Bunyamin Sakar

Results 7 comments of Bunyamin Sakar

### docker file ``` FROM node:22-alpine as build LABEL version="1.0" LABEL description="Taxi" WORKDIR /app ENV PATH /app/node_modules/.bin:$PATH COPY package.json ./ COPY package-lock.json ./ RUN npm install --silent COPY . ./...

@igor-topolski I have shared mine dockerfile also im including explicit the curl package :)

the weird part is when i build it locally then there no issue ??

I think the problem is there is an issue with path thats chosen to build the image i have used private github repo way there must be an bug there....

There is an bug with docker file build from github apps from repos. when i used nixbuild everthing works correctly @LEstradioto @igor-topolski

@andrasbacsai any fixes or suggested work around?