# Use an existing base image FROM pengzhile/fuclaude:latest # Set any environment variables if needed # ENV ENV_VAR_NAME=value # Expose the port inside the container EXPOSE 8181 # Set any other configurations or commands if necessary # For example, if additional setup or commands are needed upon container start-up, # they can be added here. # Specify the command to run your application # CMD ["command", "parameter1", "parameter2", ...] # Replace the command with the actual command that starts your application CMD ["./fuclaude", "--port", "8181"]