# Use the rockchin/free-one-api image as a base FROM rockchin/free-one-api # Set the working directory in the Docker image WORKDIR /app # Copy the data directory from your local machine into the Docker image COPY ./free-one-api/data /app/data # Expose port 3000 for the app EXPOSE 7860 # Specify the command to run when the Docker container starts # Replace "your-command" with the actual command you want to run CMD ["python main.py"]