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.

setup docker

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