diff --git a/Dockerfile.frontend b/Dockerfile.frontend index e69de29..870f36d 100644 --- a/Dockerfile.frontend +++ b/Dockerfile.frontend @@ -0,0 +1,13 @@ +FROM node:18-alpine + +WORKDIR /app + +COPY . . + +RUN npm install + +EXPOSE 3000 + +RUN npm run build:web + +CMD ["npm" ,"run" ,"start:web"]