mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-22 02:04:18 -05:00
16 lines
217 B
Docker
16 lines
217 B
Docker
FROM node:20
|
|
|
|
# App setup
|
|
WORKDIR /app
|
|
ENV PUPPETEER_SKIP_DOWNLOAD=true
|
|
|
|
# Install NPM dependencies
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
|
|
# Copy app files and build
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
CMD ["npm", "run", "start"]
|