blog / Dockerfile
hadadrjt's picture
blog: Introduce article analyzer with LLM.
0140f48
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
FROM node:24-alpine
WORKDIR /app
COPY . .
RUN npm install \
&& npm run build
EXPOSE 3000
CMD ["npm", "start"]