Files
videoscroller/frontend/Dockerfile
2026-02-01 04:39:12 -05:00

14 lines
239 B
Docker

FROM node:18-alpine AS build
WORKDIR /app
# Frontend doesn't need a build step for this simple setup
COPY . .
# Serve with a simple HTTP server
RUN npm install -g http-server
EXPOSE 3000
CMD ["http-server", ".", "-p", "3000", "-c-1"]