A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules
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"]