mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-14 18:36:35 +00:00
10 lines
139 B
Docker
10 lines
139 B
Docker
FROM node:20.8.1-bookworm-slim AS base
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json .
|
|
|
|
RUN npm i
|
|
|
|
CMD ["npm", "run", "docker:start"]
|