mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
9 lines
134 B
Docker
9 lines
134 B
Docker
FROM node:current-alpine
|
|
|
|
COPY package*.json ./
|
|
RUN npm install --legacy-peer-deps
|
|
COPY . .
|
|
|
|
EXPOSE 80
|
|
|
|
CMD [ "npm", "run", "build" ]
|