A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules
7
fork

Configure Feed

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

at cfcc62bef2db83ec509a3436859f447df39b0f47 20 lines 368 B view raw
1# Description: Dockerfile for the Skywatch Tools 2FROM node:lts 3RUN curl -fsSL https://bun.sh/install | bash 4ENV PATH="/root/.bun/bin:${PATH}" 5 6# Create app directory 7WORKDIR /app 8COPY package*.json bun.lockb ./ 9 10# Install app dependencies 11RUN bun i 12 13# Bundle app source 14COPY . . 15 16# Expose the port the app runs 17EXPOSE 4101 18 19# Serve the app 20CMD ["bun", "run", "start"]