mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
5 lines
94 B
Text
5 lines
94 B
Text
FROM node:latest
|
|
ENV HOST 0.0.0.0
|
|
COPY ./vite /app
|
|
WORKDIR /app
|
|
RUN yarn install & yarn build
|