define Docker

This commit is contained in:
cracklesparkle
2024-07-18 17:36:52 +09:00
parent cf3fda43e4
commit ca2d97f975
7 changed files with 89 additions and 3 deletions

View File

@ -0,0 +1,13 @@
FROM node:lts-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev"]