mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-25 03:56:14 +02:00
362a6e2ceb
Former-commit-id: 8ed321f2ba
20 lines
274 B
Docker
20 lines
274 B
Docker
FROM node:18-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Expose port
|
|
EXPOSE 3000
|
|
|
|
# Next.js telemetry disable
|
|
ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
# Start development server
|
|
CMD ["npm", "run", "dev:frontend"]
|