Files
gander/frontend/Dockerfile
Chris-1010 60c9d1986e Refactored chat implementation to work with Websockets;
Fixed video.js working on Docker Container;
Added sample video to VideoPlayer for now;
Bug: Requests to the server take extra long to return a response;
2025-01-25 15:29:17 +00:00

16 lines
260 B
Docker

FROM node:18-alpine
WORKDIR /frontend
ENV VITE_API_URL=${VITE_API_URL}
ENV VITE_STRIPE_PUBLISHABLE_KEY=${VITE_STRIPE_PUBLISHABLE_KEY}
COPY package*.json ./
RUN npm install --legacy-peer-deps
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host"]