activity-simulator / Dockerfile
abedelbahnasy55's picture
feat: cloud simulator - Docker, dashboard, auto-start
ccb6b75
raw
history blame contribute delete
204 Bytes
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY . .
RUN mkdir -p data logs
ENV NODE_ENV=production
ENV PORT=7860
EXPOSE 7860
CMD ["node", "src/cloud-server.js"]