FROM node:20-alpine
WORKDIR /app
COPY server.js kr-cidrs.json .
ENV LISTEN_PORT=8099
EXPOSE 8099
CMD ["node", "server.js"]
