mirror of
https://github.com/zoriya/Aeris.git
synced 2026-05-24 07:29:46 +00:00
9 lines
127 B
Docker
9 lines
127 B
Docker
FROM node:17-alpine
|
|
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn install --frozen-lockfile
|
|
|
|
COPY . .
|
|
RUN yarn build
|
|
CMD yarn start
|