mirror of
https://github.com/sendevia/website.git
synced 2026-03-05 23:32:45 +08:00
12 lines
114 B
Docker
12 lines
114 B
Docker
FROM node:lts-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN npm install
|
|
|
|
EXPOSE 4173
|
|
|
|
CMD ["npm", "run", "docs:preview"]
|