mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 07:39:29 -07:00
* Update Dockerfile, swapped index.js for index.mjs * Update README.md with docker music instructions.
11 lines
127 B
Docker
11 lines
127 B
Docker
FROM node:18-alpine
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
CMD ["node", "index.mjs"]
|