mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-27 21:16:14 +02:00
6281085045
Former-commit-id: 3b8912a8f67efd51c08cc6f4c77d43266b8fdc1b
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"]
|