polypharmacy-env / frontend /Dockerfile
adithya9903's picture
fix: monorepo
e543908
raw
history blame contribute delete
181 Bytes
FROM node:20-alpine
WORKDIR /app
COPY frontend/package*.json ./
RUN npm ci
COPY frontend/ ./
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]