read values from env and add Dockerfile

This commit is contained in:
2026-08-04 23:03:19 -07:00
parent 538a3f6aa9
commit 4b83c47637
8 changed files with 166 additions and 3 deletions

19
extra/4play/Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM alpine:3.21
WORKDIR /app
RUN apk update && apk upgrade
RUN apk add nodejs npm
COPY package*.json ./
RUN npm ci --only=production && npm cache clean --force
COPY . .
EXPOSE 3030
ENTRYPOINT ["node"]
CMD ["page-render.js"]