Initial commit: iOS OTA app store

This commit is contained in:
trey
2026-04-11 11:40:44 -05:00
commit ad2850d664
16 changed files with 1232 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:20-alpine
RUN apk add --no-cache python3 make g++ vips-dev
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY src/ ./src/
COPY public/ ./public/
COPY views/ ./views/
ENV DATA_DIR=/data
ENV PORT=3000
EXPOSE 3000
CMD ["node", "src/server.js"]