To change the size of an actor you can either change the image of the actor (the file) or change the greenfootImage of the actor using the scale method.
For example:
//in your rocket class
public Rocket() {
getImage().scale(newX, newY); //instead of newX and newY you have to use the new size (x and y) of the image.
}