Spaces:
Running
Running
File size: 322 Bytes
f3a79d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM node:18-alpine
WORKDIR /app
# Copy package manifests and install dependencies
COPY package*.json ./
RUN npm install
# Copy the rest of the application code
COPY . .
# Expose the Vite dev server port
EXPOSE 5173
# Start the dev server, listening on all network interfaces
CMD ["npm", "run", "dev", "--", "--host"] |