FROM node:slim

RUN npm install -g http-server

WORKDIR /app
COPY file.txt .
COPY flag.txt .

CMD http-server .
