2957903cb1
Because the first placeholder player model resembled a queen that's been to the gym a bit too much. Also, before she got her head and hands, she looked like a tree, legit.
7 lines
130 B
Docker
7 lines
130 B
Docker
FROM node:current-alpine
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
CMD ["node", "js/index.js"]
|