Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

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

feat(Docker Image): Add a docker image that uses bun for the server for testing later

+24
+24
Dockerfile-bun
··· 1 + FROM node:lts AS runtime 2 + WORKDIR /app 3 + COPY package.json pnpm-lock.yaml ./ 4 + RUN npm install -g pnpm 5 + RUN npm install -g bun 6 + 7 + RUN pnpm install --shamefully-hoist 8 + 9 + 10 + COPY . . 11 + 12 + RUN apt-get update -y 13 + RUN apt-get install -y jpegoptim 14 + 15 + RUN wget https://github.com/shssoichiro/oxipng/releases/download/v9.1.3/oxipng_9.1.3-1_amd64.deb 16 + RUN apt-get install -y ./oxipng_9.1.3-1_amd64.deb 17 + RUN rm ./oxipng_9.1.3-1_amd64.deb 18 + 19 + RUN pnpm run build 20 + 21 + ENV HOST=0.0.0.0 22 + ENV PORT=4321 23 + EXPOSE 4321 24 + CMD bun ./dist/server/entry.mjs