# Dockerfile for frontend FROM node:16 WORKDIR /app # Copy package.json file first to install dependencies COPY package.json ./ RUN npm install # Install Expo CLI and ngrok globally RUN npm install -g expo-cli @expo/ngrok # Copy the rest of the application files COPY . . EXPOSE 8081 CMD ["expo-cli", "start", "--tunnel"]