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