JaxTheWolf

Results 3 comments of JaxTheWolf

I keep getting the same error, trying multiple versions of Node (21, 20, 18, haven't tried other). I was planning on dockerising this project for myself (and maybe my friends).

``` FROM node:18-alpine RUN apk update RUN apk add wget make bash git zip RUN mkdir /src COPY src /src WORKDIR /src RUN make public RUN npm run start:prod ```...

> @JaxTheWolf weird, that Dockerfile works for me, in the current main branch, just modified `COPY . /src` and ran `docker build .` from the repo root. Hm, could you...