#How to uncap debian 11 memlock to deploy bun?

1 messages · Page 1 of 1 (latest)

rare oriole
#

are you compiling bun in your docker container?

#

and being on a vps with shared kernels are almost everytime bad ideas... whats your kernel version?

flat ibex
#

I am using the jarredsumner/bun container

FROM jarredsumner/bun:0.1.11
RUN bun upgrade
WORKDIR /ezlyf
COPY package.json ./
RUN bun install
COPY . .
EXPOSE 3000
CMD ["bun", "./index.ts"]

I am on a VPS with just Debian 11, no shared kernels afaik.

rare oriole
#

well you most likely have a outdated kernel version, so probably you are on a shared kernel vps

#

this is very common for cheap vps

flat ibex
#

Well, it is

flat ibex
rare oriole