A tool for tailing the firehose and matching images against known perceptual hashes, and then labeling them.
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.lock ./
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"]