mirror of
https://github.com/PretendoNetwork/account.git
synced 2026-03-22 01:54:35 -05:00
11 lines
134 B
Docker
11 lines
134 B
Docker
FROM node:20.4.0-alpine3.18
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY . ./
|
|
RUN npm run build
|
|
|
|
CMD npm start |