osw-studio / Dockerfile
otst's picture
overhauled orchestrator, vfs, chat and renamed to "osw-studio"
65f04c5
raw
history blame
379 Bytes
FROM node:20-alpine
ENV NODE_ENV=production \
NEXT_TELEMETRY_DISABLED=1 \
HOST=0.0.0.0 \
PORT=7860
WORKDIR /app
# Copy package.json and install production dependencies
COPY package.json ./
RUN npm install --only=production
# Copy standalone server and build artifacts
COPY server.js .
COPY .next ./.next
COPY public ./public
EXPOSE 7860
CMD ["node", "server.js"]