You would need to wrap double quotes around the path, which makes the variable 'image' a string.
<cfset image = "f:\images\site\dog.gif">
I'm assuming you would want to use that variable in an <img> tag, to do that:
<img src="<cfoutput>#image#</cfoutput>" />