FROM node:23-alpine

RUN apk add --no-cache bash

EXPOSE 3001/udp
EXPOSE  3000/tcp
EXPOSE 3003

COPY . /var/www/html
WORKDIR /var/www/html
RUN npm install

ARG GITHUB_TOKEN=latest
RUN echo "TOKEN is: $GITHUB_TOKEN"

CMD npm start
