1
0
mirror of https://github.com/sendevia/website.git synced 2026-03-05 23:32:45 +08:00

feat(Dockerfile): add initial Dockerfile

This commit is contained in:
2026-02-22 21:08:50 +08:00
parent 1fbac018f9
commit c7af2eeb0f

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:lts-alpine
WORKDIR /app
COPY . /app
RUN npm install
EXPOSE 4173
CMD ["npm", "run", "docs:preview"]