[READ-ONLY] Mirror of https://github.com/mrgnw/ananas. learn multiple languages at once ananas.xcc.es
0

Configure Feed

Select the types of activity you want to include in your feed.

ananas / Dockerfile
236 B 16 lines
1# Node + Bun 2FROM node:23 AS bun-base 3RUN npm install -g bun 4WORKDIR /app 5 6FROM bun-base AS dev 7COPY package*.json ./ 8RUN bun install 9 10COPY . . 11 12ENV NODE_ENV=development 13ENV HOST=0.0.0.0 14EXPOSE 5173 15 16CMD ["bun", "run", "dev", "--host"]