1
0
forked from jchomaz/Vulture
Files
Vulture/VContainers/VApp/Containerfile

16 lines
285 B
Plaintext
Raw Normal View History

# Development Container for VApp
FROM docker.io/node:lts-alpine
2025-11-16 18:54:38 +01:00
WORKDIR /app
# Copy VApp source code
COPY VApp ./
2025-11-16 18:54:38 +01:00
# Install dependencies
RUN npm install
2025-11-16 18:54:38 +01:00
# Expose Vite default port
EXPOSE 5173
2025-11-16 18:54:38 +01:00
# Start in development mode with host exposure
CMD ["npm", "run", "dev", "--", "--host"]