grim/www.reaperworld.com

Update the twitch subscribers list

3 months ago, Gary Kramlich
2026bada8a23
Update the twitch subscribers list
FROM node:16 AS build
WORKDIR /app
COPY package.json package-lock.json ./
COPY . .
RUN set -ex && \
npm install && \
npm run generate --omit=dev
FROM docker.io/nginx:alpine
COPY --from=build /app/dist/ /usr/share/nginx/html/
EXPOSE 80/tcp